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

前端 未结 5 1373
爱一瞬间的悲伤
爱一瞬间的悲伤 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条回答
  •  -上瘾入骨i
    2021-02-01 10:11

    Consider the following command instead (some outdated commands in the final answer section):

    ffmpeg -i test.mp4 -c:v wmv2 -b:v 1024k -c:a wmav2 -b:a 192k test1.wmv
    

    REFERENCES

    • List item https://askubuntu.com/questions/352920/fastest-way-to-convert-videos-batch-or-single

提交回复
热议问题