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

前端 未结 5 1370
爱一瞬间的悲伤
爱一瞬间的悲伤 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:08

    Working answer in 2020, producing an output video without blockiness:

    ffmpeg -i input.mp4 -q:v 1 -q:a 1 output.wmv
    

提交回复
热议问题