Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一个类似于 FFDshow 的库来帮助我将 .flv 转换为 .avi 格式并可能做更多的事情。我知道我可以通过 VLC 播放器做到这一点,但我宁愿用 Python 手动(和批量)。
类似于: 媒体转换库/插件最好是 php python 自动从上传目录转换 ffmpeg
pygst使用正确的插件可以读取 .flv 文件(并写入其他格式)。
pygst
使用ffmpeg. 如果需要,您可以从 python 调用它。
ffmpeg
ffmpeg -i in.flv -f avi -vcodec mpeg4 -acodec libmp3lame out.avi
可以在这里找到使用 ffmpeg 转换文件的完整文档。