ffmpeg轉檔

ffmpeg 是一個命令列工具,用來對視訊檔案轉換格式

ffmpeg -i source.avi -vcodec libx264 -b:v 2000k -r 29.97 -acodec aac -ar 44100 -ab 128k -ac 2 -strict -2 dest.mp4
  • -i = 來源影片 (後面的參數先不接的話可以查看來源影片的詳細資訊,可供想要轉成什麼品質的參考)
  • -vcodec = video code (如果要保留原格式就用 -vcodec copy)
  • -b:v = video bitrate
  • -r = frame rate (Hz)
  • -acoder = audio code  (如果要保留原格式就用 -vcodec copy)
  • -ar = audio rate (Hz)
  • -ab = bitrate (bits/s)
  • -ac = number of audio channels
  • -strict = strictly to follow the standards
  • dse.mp4 = 轉成什麼檔名

其它

  • -vf “transpose=1″  將畫面假如是90度的就呈水平
  • -threads 0  盡量耗用 CPU
  • -crf = enables constant quality mode, and selects the quality (x264/VP8) 固定品質為優先

參考

ffmpeg –help

http://jamyy.dyndns.org/blog/2012/10/4118.html

http://fcamel-life.blogspot.tw/2012/07/ffmpeg.html

你可能感兴趣的:(linux,ffmpeg,mp4,h264)