Either click this link or run this command in the terminal to install FFmpeg.
sudo apt-get install ffmpeg
Install FFmpeg in Fedora
FFmpeg can be directly installed from the repos. Just run the following command.
su -c 'yum install ffmpeg'
Install FFmpeg in any Linux system from source
This howto will be helpful to all the linuxers who either want to have a fully customized installation of FFmpeg or are having some trouble in installing the default package from the distro repos or want to try the latest release.
First of all you will have to download the latest source from the main website. Now, untar it.
tar -xvjf ffmpeg-0.5.tar.bz2
Install FFmpeg with default options
once you are done with this, in order to install FFmpeg with the default config and options run
./configure
from within the FFmpeg source directory. When the configuration script finishes compile it by running make
make
If the compile finishes without any errors run 'make install' as root to install FFmpeg
su -c 'make install'
Install FFmpeg with customized settings
If you want to install FFmpeg by customizing some installation options then you can pass some special parameter while running configure script. Run the following command to find out various options available while running configure script.
./configure --help
This will show you various options to customize the default installation. Most of the time the default installation will work for you but there is one option which most of us might need freqeuntly. It is
--enable-libmp3lame: This one is a must if you want to work with mp3. Encoding mp3 won't be possible without it.
Although in order to make this option work you will need lame installed. You will get the warning at the time of configuring it. This can be done by installing the library "libmp3lame". You can either install it directly from the repos.
sudo apt-get install libmp3lame0
or, you can install libmp3lame directly from the source from their website.
Once you are done with 'lame's' installation. this run configure again, if successful run 'make' and then 'make install ' as root.
ImageMagick is a suite of command line utilities for image conversion and editing. As one of the most popular image editing software suite, ImageMagick can support almost all kinds of raster image types including GIF, JPEG, PDF, PNG, Postscript, SVG, and TIFF.
Install ImageMagick on Debian, Ubuntu or Linux Mint
ImageMagick is included in a base repository of Debian-based systems. So simply use apt-get command.
sudo apt-get install imagemagick
Install ImageMagick on Fedora, CentOS or RHEL
ImageMagick is also part of standard RedHat-based systems. Thus installation is straightforward with yum command.
sudo yum install ImageMagick
Install ImageMagick on OpenSUSE
Installation of ImageMagick is straightforward on OpenSUSE with the use of zypper command.