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.
我有 FLV 格式的视频,我想将视频转换为 MP4 格式,以便在 HTML5 视频标签中使用它。任何人都可以知道将 FLV 转换为 MP4 的命令。
谢谢
您应该使用 ffmpeg 文档或搜索较早的问题。
这是示例命令
ffmpeg -i input.flv -c:v libx264 -crf 23 -c:a libfaac -q:a 100 output.mp4