如何使用 PHP、Java、.Net 在运行时创建视频缩略图?

发布于 2024-10-16 23:58:08 字数 87 浏览 0 评论 0原文

是否可以使用任何技术(Java、PHP、.Net)在运行时创建视频缩略图。

如果您有任何问题,请提供合适的链接或代码,

提前致谢

is it possible to create 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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

生生漫 2024-10-23 23:58:08

这是要填充的列表:

 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.

我希望这会给您一个想法。怎么做。
我写的代码很短,但我希望它的外观和工作方式是这样的。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文