ffmpeg compile with h.264 on Raring Ringtail (Ubuntu 13.04)
The temp space is your friend on this. I am root user throughout this. You can sudo every command, but that gets old for me.
|
1 |
cd /tmp |
Get the latest source
|
1 |
git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg |
Go into the clone source and configure with H.264 support
|
1 2 3 |
cd ffmpeg ./configure --enable-gpl --enable-libx264 |
|
1 |
make |
The make will take a while because of the H264 support.
make install will be a breeze.
|
1 |
make install |
And it’s just that [...]