Ubuntu 14.04下安裝ffmpeg
阿新 • • 發佈:2019-02-05
最新版本 FFmpeg 2.5.1 已經發布,Ubuntu 14.04、14.10使用者可通過PPA進行安裝,開啟終端,輸入命令:
sudo add-apt-repository ppa:kirillshkrogalev/ffmpeg-next
sudo apt-get update
sudo apt-get install ffmpeg
Using ffmpeg
Syntax
ffmpeg [[infile options][-i infile]]... {[outfile options] outfile}...
FFmpeg Examples
設定視訊輸出檔案位元率為 64 kbit/s
ffmpeg -i input.avi -b:v 64k -bufsize 64k output.avi
強制視訊為 24 幀
ffmpeg -i input.avi -r 24 output.avi
To force the frame rate of the input file (valid for raw formats only) to 1 fps and the frame rate of the output file to 24 fps
ffmpeg -r 1 -i input.m2v -r 24 output.avi