Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 C#/.NET 批量处理 mpg 的目录以生成缩略图。
有人对我如何做到这一点有任何好的建议吗?
我知道这不是 C# .NET,但ffmpeg是一个很好的工具来做到这一点。可以作为任何语言的命令行工具运行。
这是一个小教程,可以帮助您入门。
几年前我这样做了,但我似乎失去了来源。无论如何,我发现的最小阻力路线是使用 DirectShow,托管代码有一个互操作包装器,即directshow.net。您需要使用来自Windows Media Format SDK的IMediaDet的GetBitmapBits。
CodeProject上有一个例子:Extract Frames from Video Files