How to get better quality converting MP4 to WMV with ffmpeg?

前端 未结 5 1427
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-01 09:39

I am converting MP4 files to WMV with these two rescaling commands:

ffmpeg -i test.mp4 -y -vf scale=-1:360 test1.wmv
ffmpeg -i test.mp4 -y -vf s         


        
5条回答
  •  野性不改
    2021-02-01 10:04

    One thing I discovered after many frustrating attempts of enhancing the final quality was that if you don't specify a bitrate, it'll use a quite low average. Try -b 1000k for a starting point, and experiment increasing or decreasing it until you reach the desired result. Your file will be quite bigger or smaller, accordingly.

提交回复
热议问题