Showing posts with label Mythtv Plugins on Centos 5. Show all posts
Showing posts with label Mythtv Plugins on Centos 5. Show all posts

Wednesday, August 22, 2007

Mythtv Plugins on Centos 5

tar xvjf mythplugins-0.20a.tar.bz2
cd mythplugins-0.20a
./configure --enable-all

http://www.mythtv.org/docs/mythtv-HOWTO-17.html

Download FLAC from http://flac.sourceforge.net and install:

$ tar -xzf flac-1.1.2.tar.gz
$ cd flac-1.1.2
$ ./configure
$ make
$ su
# make install
# exit
$
yum -y install cdparanoia

http://www.underbit.com/products/mad

I had to install all 3 by hand, it wasn't finding the libmad or id3tag even though there was an rpm already installed

I also had to do FLAC & CD Paranoia by hand. I'm probably just missing a variable which is why it won't find these packages. For CD Paranoia I had to use release 10. 9 kept giving me a make error for some reason.

cd /tmp/mythplugins-0.20a
./configure --enable-all
qmake mythplugins
make -j 2
make install

This didn't install mythmusic, flac was giving me an error.
I make uninstalled flac and reinstalled it with yum.
then the following worked

http://www.mythtv.org/docs/mythtv-HOWTO-17.html
$ cd ~/mythplugins-0.20
$ ./configure --disable-all --enable-mythmusic --enable-fftw --enable-sdl --enable-aac
$ qmake mythplugins.pro
$ make
$ su
# make install
# exit

Complete ting the mythweb installation

http://www.mythtv.org/docs/mythtv-HOWTO-14.html