ffmpeg

从mp4到flv:

ffmpeg -i Unit2.mp4 -ar 44100 -ab 56K -r 15 output2.flv

 

-ar freq 设置音频采样率

-ab bitrate 设置音频码率

-r fps 设置帧频 缺省25

-b bitrate 设置比特率,缺省200kb/s

-r fps 设置帧频 缺省25

 

从mp4到webm

ffmpeg -i Unit2.mp4 -ar 44100 -ab 56K -r 15 -strict -2 output2.webm

 

 从mp4到ogv

ffmpeg -i Unit2.mp4 -codec:a vorbis -ar 44100 -ab 56K -b 200k -strict -2 output2.ogv

 

 

你可能感兴趣的:(ffmpeg)