用于将 Motion Jpeg 文件转换为 Jpeg 静态图像的 .Net 库?

发布于 2024-11-19 09:31:46 字数 216 浏览 1 评论 0原文

我有几台松下相机用于拍摄视频,它们生成 Motion JPEG(包装为 .mov)。我想编写一个简单的工具(用 C# 语言)将 .mov 文件转换为一组 JPG 剧照。

找不到太多帮助,因为大多数人想要阅读流或采取其他方式(从静止图像到视频)。

我应该用什么?我发现至少有几个不同的库可能有用。 (DirectShow,OpenCV)但我很感激任何关于如何完成这项任务的建议......

I have a couple of Panasonic cameras that I use for shooting video, and they produce Motion JPEG (wrapped as .mov). I want to write a simple tool (in C#) to convert the .mov files to a set of JPG stills.

Can't find much help becasue most folks want to read streams or to go the other way (from stills to video).

What should I use? I have picked up that there are at least couple of different libraries that might be useful. (DirectShow, OpenCV) but I'd appreciate any and all advice on how to approach this task...

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

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

发布评论

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

评论(1

再可℃爱ぅ一点好了 2024-11-26 09:31:46

最后,我只是分析了文件,制定了标题并编写了代码。如果其他人也能完成同样的任务,那很简单,只需观察关键帧,这似乎重复了我推断的“​​启动 JPEG”代码 3 次(至少对于我的相机而言)。

也许有用....

    byte[] _startToken = new byte[2] { 0xFF, 0xD8 }; //JPEG Start
    byte[] _endToken = new byte[2] { 0xFF, 0xD9 }; //JPEG End

In the end, I just analysed the files, worked out the headers and wrote the code. If anyone else is up to the same task, it's pretty easy, just watch for the keyframes, which seem to repeat what I'd deduced is the "start JPEG" code 3 times (at least for my camera).

Maybe useful....

    byte[] _startToken = new byte[2] { 0xFF, 0xD8 }; //JPEG Start
    byte[] _endToken = new byte[2] { 0xFF, 0xD9 }; //JPEG End
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文