How to force Constant Bit Rate using FFMPEG

孤人 提交于 2019-12-03 02:55:18

Try this:

ffmpeg 
-i input 
-b 1200k 
-minrate 1200k 
-maxrate 1200k 
-bufsize 1200k 
-ab 64k 
-vcodec libx264 
-acodec aac -strict -2 
-ac 2 
-ar 44100 
-s 320x240 
-y output.mp4

Had to use aac instead of libfaac, which requires "-strict -2".

Also had to add ".mp4" to output file name.

I moved the "-y" next to the output file name since it tells it to overwrite the file, but it seemed to work where you had it too.

I did this on 64 bit OS X 10.8.4; ffmpeg version 1.2.1-tessus.

I have seen the same ffmpeg version work differently on 32 bit and 64 bit linux systems, so who knows if this will work for you.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!