最佳答案
我在 ubuntu11by 上安装了 ffmpeg 0.8.9
./configure —— enable-gpl —— enable-nonfree —— able-pthread ——激活-libfaac ——激活-libmp3lam——激活-libx264
当我运行它的时候
ffmpeg -y -i test.mp4 -f mpegts -acodec libmp3lame -ar 48000 -ab 64k -vcodec libx264 -b 250k -flags +loop -cmp +chroma -partitions +parti4x4+partp8x8+partb8x8 -subq 5 -trellis 1 -refs 1 -coder 0 -me_range 16 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -bt 250k -maxrate 250k -bufsize 250k -rc_eq 'blurCplx^(1-qComp)' -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -level 30 -aspect 320:240 -g 30 -async 2 a.ts
上面说
Unknown encoder 'libx264'
(注意: 同样的错误也可能发生在 avconv
上)
我该怎么办? 谢谢!