如何使用 C# 从 mpg 视频创建缩略图?
我想使用 C#/.NET 批量处理 mpg 目录以获得缩略图。
有人对我如何做到这一点有什么好的建议吗?
I'd like to process a directory of mpg's in a batch to have a thumbnail using C#/.NET.
Does anyone have any good suggestions on how I could do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我知道它不是 C# .NET,但 ffmpeg 是一个很好的工具来做到这一点。 可以作为任何语言的命令行工具运行。
这里有一个小教程帮助您入门。
I know it's not C# .NET but ffmpeg is a great tool to do exactly this. Can be run as a command line tool from any language.
Here's a small tutorial to get you started.
我几年前做过这个,但我似乎失去了来源。 无论如何,我发现的阻力最小的路线是使用 DirectShow,有一个用于托管代码的互操作包装器,即 directshow.net。 您需要使用 IMediaDet 的GetBitmapBits 来自 Windows Media 格式 SDK。
CodeProject上有一个示例: 从视频文件中提取帧
I did this a few years ago, but I seem to have lost the source. Anyway, the route-of-least-resistance I found was to use DirectShow, there is an interop wrapper for managed code, namely directshow.net. You'll want to use IMediaDet's GetBitmapBits from the Windows Media Format SDK.
There is an example on CodeProject: Extract Frames from Video Files