开发者

How to Create Thumbnails of Video at runtime using PHP,Java,.Net?

开发者 https://www.devze.com 2023-02-10 03:04 出处:网络
is it possible to cr开发者_JS百科eate video thumnails at runtime in any of the technology (Java,PHP,.Net).

is it possible to cr开发者_JS百科eate video thumnails at runtime in any of the technology (Java,PHP,.Net).

Please provide the suitable link or code if you have any

Thanks in advance


his is the list to be populated:

 List<ThumbNail> thmbNails = new List<ThumbNail>();// your list which will hold thumbnails
CMESqlCommandBuilder iscBuilder = new CMESqlCommandBuilder(); //query of the d.b
while (sdaResult.Read()) // while loop if you want more than one video thumbanil on page
            {
                ThumbNail prd = new ThumbNail();
return thumbnails; // this will goes to the xml file which.

I hope this will give you an idea. how to do it. I write the code short but i hope this how it will look and work.

0

精彩评论

暂无评论...
验证码 换一张
取 消