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.
我正在尝试使用 ffmpeg 将 flv 文件(使用 red5 服务器记录)转换为 .mov 文件。
使用下面的代码实际上会使视频断断续续。我们可以从文件大小中看出这一点。flv 文件大小为 1.45 MB,而转换后的文件 .mov 为 270 KB。
ffmpeg -i input.flv sample.mov
我对ffmpeg知之甚少。如果我需要添加任何参数来保留/提高视频质量,请告诉我。
尝试这个:ffmpeg -i input.flv -ar 22050 -b 500 -s 320x240 sample.mov
ffmpeg -i input.flv -ar 22050 -b 500 -s 320x240 sample.mov