How to Install HandBrake on Fedora 18

Edit: Due to the fact that this article is old, the installation instructions may not work anymore. In order to successfully install the latest version of HandBrake, please access the handbrake tag and open the latest article (the one on top).

Watch Free Movies

The latest installation instructions for HandBrake

Hello Linux Geeksters.

In this article I will show you how to install Handbrake on Fedora 18.

HandBrake is an open-source multiplatform multithreaded video transcoder. It is used for converting DVD or Bluray discs to formats like MP4, MKV, H.264, MPEG-4 or other formats. You can also encode audio files like AAC, MP3, Flac, AC3 etc.

There is no ppa for Handbrake on Fedora 18, so we will install it via SVN.

Install the dependencies:

$ sudo yum groupinstall “Development Tools”
$ sudo yum install libass-devel libsamplerate-devel libogg-devel libtheora-devel libvorbis-devel yasm zlib-devel bzip2-devel fribidi-devel dbus-glib-devel libgudev1-devel webkitgtk-devel libnotify-devel gstreamer-devel gstreamer-plugins-base-devel libsamplerate-devel svn

Get the source code from svn:

$ sudo svn checkout svn://svn.handbrake.fr/HandBrake/trunk handbrake

Compile and install Handbrake:

$ cd handbrake
$ ./configure
$ cd build
$ make
$ sudo make install

Scroll to Top