使用 GStreamer(不是 ffmpeg)将视频转换为图像序列

发布于 2024-09-06 19:28:36 字数 338 浏览 4 评论 0原文

我有一个 ogg vorbis 视频。它在totem和mplayer中运行良好。我想将其转换为一系列图像,每帧一个图像。我可以使用以下命令在 ffmpeg 上执行此操作:

ffmpeg -i video.ogv -f image 2 video-frames-%08png

但是这不适用于该视频。每帧都是灰色的,好像存在大量解码问题。由于它在 totem 中工作,我怀疑 gstreamer 比 ffmpeg 能够更好地解码视频。是否有 gstreamer 命令可以接收 ogg vorbis 视频,然后创建一堆图像,每帧一个图像?

我正在使用 Ubuntu Lucid 桌面。

I have an ogg vorbis video. It plays fine in totem and mplayer. I want to covert it to a sequnces of images, one image per frame. I can do this on ffmpeg with the following command:

ffmpeg -i video.ogv -f image 2 video-frames-%08png

However that doesn't work for this video. Each frame is all grey as if there has been loads of decoding problems. Since it works in totem, I suspect that gstreamer is better able to decode the video than ffmpeg. Is there a gstreamer command that will take in a ogg vorbis video and then create a pile of images, one for each frame?

I'm using stock Ubuntu Lucid desktop.

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

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

发布评论

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

评论(1

沫离伤花 2024-09-13 19:28:37

尝试多文件接收器:

gst-launch filesrc location=video.ogv ! decodebin ! pngenc ! multifilesink location=img%d.png

try multifilesink:

gst-launch filesrc location=video.ogv ! decodebin ! pngenc ! multifilesink location=img%d.png
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文