1) Open your gnome-terminal or konsole
2) For deactivating previous settings that made by user...
sudo apt-get remove ffmpeg x264 libx264-dev
3) To get the dependencies and system stuff...
sudo apt-get update
4) To get x264 and installin it...
cd
cd x264
./configure
make
5) To get FFmpeg....
cd
cd ffmpeg
make
6) Now it's all done .. Now you can do your convertions via terminal codes.. I have mentioned them in a another post.. they are same for this distribution too.. If you are not ok with the terminal enter following code in terminal. It's a user friendly GUI for FFmpeg... Try it..
sudo apt-get install winff
2) For deactivating previous settings that made by user...
sudo apt-get remove ffmpeg x264 libx264-dev
3) To get the dependencies and system stuff...
sudo apt-get update
sudo apt-get install build-essential git-core checkinstall yasm texi2html \ libfaac-dev libjack-jackd2-dev libmp3lame-dev libopencore-amrnb-dev \ libopencore-amrwb-dev libsdl1.2-dev libtheora-dev libva-dev libvdpau-dev \ libvorbis-dev libx11-dev libxfixes-dev libxvidcore-dev zlib1g-dev
4) To get x264 and installin it...
cd
git clone git://git.videolan.org/x264
cd x264
./configure
make
sudo checkinstall --pkgname=x264 --pkgversion="3:$(./version.sh | \ awk -F'[" ]' '/POINT/{print $4"+git"$5}')" --backup=no --deldoc=yes \ --fstrans=no --default
5) To get FFmpeg....
cd
git clone git://git.videolan.org/ffmpeg
cd ffmpeg
./configure --enable-gpl --enable-version3 --enable-nonfree --enable-postproc \ --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb \ --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis \ --enable-libx264 --enable-libxvid --enable-x11grab
make
sudo checkinstall --pkgname=ffmpeg --pkgversion="5:$(date +%Y%m%d%H%M)-git" --backup=no \ --deldoc=yes --fstrans=no --default
hash x264 ffmpeg ffplay ffprobe
6) Now it's all done .. Now you can do your convertions via terminal codes.. I have mentioned them in a another post.. they are same for this distribution too.. If you are not ok with the terminal enter following code in terminal. It's a user friendly GUI for FFmpeg... Try it..
sudo apt-get install winff
I get this when configuring ffmpeg: ERROR: libx264 not found
I'm also getting the missing libx264 error... any luck resolving it?
sudo apt-get install build-essential git-core checkinstall yasm texi2html \ libfaac-dev libjack-jackd2-dev libmp3lame-dev libopencore-amrnb-dev \ libopencore-amrwb-dev libsdl1.2-dev libtheora-dev libva-dev libvdpau-dev \ libvorbis-dev libx11-dev libxfixes-dev libxvidcore-dev zlib1g-dev
git clone git://git.videolan.org/x264
enter above 2 in order and check if that issue come again. If you can ignore that and continue the process it will be okay. Myself I had that issue.. Continue process and everything will be fine.. Thanks for both of you :)
Update.. Please use belows and check... Issue is not coming with these codes..
sudo apt-get update sudo apt-get install build-essential git-core checkinstall yasm texi2html \ libfaac-dev libjack-jackd2-dev libmp3lame-dev libopencore-amrnb-dev \ libopencore-amrwb-dev libsdl1.2-dev libtheora-dev libva-dev libvdpau-dev \ libvorbis-dev libx11-dev libxfixes-dev libxvidcore-dev zlib1g-dev
And for next follow up the main installation guide. I will correct the main article as room as possible. Thanks.:)
Before doing the configure on ffmpeg, make sure on your configure of x264 you include --enable-shared --enable-pic . Then do the configure make install. This works!!! I found this tip here :- http://www.linuxquestions.org/questions/linux-newbie-8/problem-with-enable-libx264-option-in-ffmpeg-822156/page2.html