有 PyMedia 的替代品吗

发布于 2024-10-17 22:14:52 字数 425 浏览 1 评论 0 原文

PyMedia 是否有替代方案来解码不同的视频格式并能够提取帧作为图像以进行进一步处理?

目前我必须能够执行以下操作(不是工作代码摘录,只是为了提供一个想法):

demuxer = muxer.Demuxer(FORMAT)
streams = demuxer.parse(open(VIDEO).read(BUFFER_SIZE))
codec = vcodec.Decoder(CODEC)

for stream in streams:
    frame = codec.decode(stream[1])
    fdata = frame.convert(2)
    img = Image.fromstring("RGB", fdata.size, fdata.data)
    # ...further processing of image...

Is there an alternative to PyMedia to decode different video formats and be able to extract frames as images for further processing?

Currently I have to be able to do something like the following (not working code extract, just to give an idea):

demuxer = muxer.Demuxer(FORMAT)
streams = demuxer.parse(open(VIDEO).read(BUFFER_SIZE))
codec = vcodec.Decoder(CODEC)

for stream in streams:
    frame = codec.decode(stream[1])
    fdata = frame.convert(2)
    img = Image.fromstring("RGB", fdata.size, fdata.data)
    # ...further processing of image...

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

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

发布评论

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

评论(2

街道布景 2024-10-24 22:14:52

您可以尝试 Pyffmpeg https://code.google.com/p/pyffmpeg/。 。

You can try Pyffmpeg https://code.google.com/p/pyffmpeg/...

深空失忆 2024-10-24 22:14:52

Pyffmpeg 似乎落后于最新的 ffmpeg 版本几年,因此不确定那里的状态:S 一种可能的解决方案可能是 moviePy,也是基于 ffmpeg 的...
根据此视频介绍,它可能很有前途

Pyffmpeg seems to be lagging a few years behind most recent ffmpeg releases, so not sure whats the status there :S One possible solution could be moviePy, which is also ffmpeg based...
According to this video intro it may be promising

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