如何从 avi 文件获取帧数?并转到特定的帧?
就像我的问题一样,有人能告诉我如何从 avi 文件中获取帧数吗?并转到特定帧并提取到 c# 中的屏幕。
Like my question, Can anybody tell me how to get frames count from avi file? and go to specific frames and extract to screen in c# .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 AVI 标头中,有一个 dwTotalFrames 计数,用于保存帧总数。
请参阅此处的文档:
http://www.alexander-noe.com/video/ Documentation/avi.pdf
第 8 页
看一下这个 C# 标头解析器:
http://www.codeproject.com/KB/files/riffparser.aspx
In the AVI header there a dwTotalFrames count which holds the total number of frames.
See the documentation here:
http://www.alexander-noe.com/video/documentation/avi.pdf
Page 8
Have a look at this C# header parser:
http://www.codeproject.com/KB/files/riffparser.aspx