Then, get the FFmpeg from GIT and compile it.
- Code: Select all
# cd /my/path/where/i/keep/compiled/stuff
# git clone git://git.videolan.org/ffmpeg.git
# cd ffmpeg
# ./configure --enable-gpl --enable-libx264
# make
# make install
# ldconfig
Now, run your FFmpeg to see if it works:
- Code: Select all
# ffmpeg -i testinput.avi -vcodec libx264 -crf 20 output.mp4
If everything went fine, you should see the encoding progress and your output file "output.mp4" after the encoding has finished.
