如何将 m4v 转换为图像序列?

发布于 2024-11-19 11:31:13 字数 150 浏览 2 评论 0原文

我正在尝试从使用 H264 压缩的 m4v 文件中提取帧。我正在研究 h264 生成的压缩伪像,因此我实际上需要精确的帧(不能选择重新编码)。我知道 VirtualDub 允许我对 .avi 或 .divx 文件执行此操作,但不适用于 m4v 文件。 有没有一个工具可以让我做到这一点?

I am trying to extract frames from m4v files compressed with H264. I am studying the compression artifacts generated by h264 so I actually need the exact frames (re-encoding is not an option). I know that VirtualDub allows me to do this for .avi or .divx files, but doesn't work with m4v files.
Is there a tool that would allow me to do this?

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

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

发布评论

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

评论(2

┈┾☆殇 2024-11-26 11:31:13

如果您想要提取更长的序列并且 MPEG Streamclip 无法在您的系统上运行,您可以使用 ffmpeg。

ffmpeg -i input.dv -r 25 -f image2 images%05d.png

您可能需要将 25 替换为视频的实际帧速率。如果您将帧速率设置为与源帧速率不同,我不确定 ffmpeg 是否会在多个帧之间混合。

更多信息可以在 stream0.org 上找到,我在那里找到了它。

In case you want to extract a longer sequence and MPEG Streamclip doesn't work on your system, you can use ffmpeg.

ffmpeg -i input.dv -r 25 -f image2 images%05d.png

You may need to replace the 25 with the actual frame rate of the video. I'm not sure if ffmpeg would blend between multiple frames if you set the frame rate to something different than the source frame rate.

More information is avalable at stream0.org, where I found it.

假装爱人 2024-11-26 11:31:13

我最喜欢的视频工具之一是 MPEG Streamclip

我只是尝试将 m4v 示例此处导出为一系列图像,并且它有效。

更新

该工具仅适用于 Windows 和 Mac OS X。

One of my favourite video tools is MPEG Streamclip.

I just tried to export the m4v sample here to a sequence of images, and it works.

UPDATE

Said tool is only available for Windows and Mac OS X.

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