用动态语言编码视频的好库?
我正在寻找一个有效的视频编码库。我更喜欢 Ruby/Python 等类型语言之一的东西,但我会使用 C 或 PHP 中的库,这些库都很好。本质上,我正在寻找包装 ffmpeg 的东西,并允许我将 H.264 .mp4 转换为 .theora.ogv、.webm 和(这会很好).flv 文件。
最糟糕的情况是,我总是可以使用任何语言来本地执行 ffmpeg,使用命令(“ffmpeg -i ...等”)之类的东西,但如果可能的话,我更喜欢使用更高级别/语言的东西。
我已经看过 RVideo,但无法使其正常工作。
I'm looking for an effective library for encoding videos. I would prefer something in one of the Ruby/Python ilk type languages, but I'd use libraries in C or PHP that were good. Essentially, I'm looking for something that wraps ffmpeg, and would allow me to convert H.264 .mp4's into .theora.ogv, .webm, and (this would be nice) .flv files.
Worst case, I could always just use any language to natively execute ffmpeg, using something like command("ffmpeg -i ...etc."), but I'd prefer something a bit higher level/in-language if possible.
I've already looked at RVideo, but couldn't get it to work correctly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 Python,有 PyMedia 和 pyffmpeg。
如果您需要原始用法示例,请参阅此 。
For Python there is PyMedia and pyffmpeg.
If you need a raw usage example, see this.