Transfron-plugin
Aus VDR Wiki
(Unterschied zwischen Versionen)
(Probleme: Plugin wurde nicht nach den konventionen gepackt... weil das auch so schweer ist [http://www.vdr-wiki.de/wiki/index.php/Plugin_Installation#F.FCr_Entwickler Siehe]) |
(M) |
||
| Zeile 43: | Zeile 43: | ||
tar xvzf libvorbis-<VERSION>.tar.gz | tar xvzf libvorbis-<VERSION>.tar.gz | ||
cd libvorbis-<VERSION> | cd libvorbis-<VERSION> | ||
| − | ./configure --prefix=/usr/local --with-ogg-libraries=/usr/local/lib | + | ./configure --prefix=/usr/local \ |
| + | --with-ogg-libraries=/usr/local/lib | ||
make | make | ||
make install | make install | ||
| Zeile 59: | Zeile 60: | ||
tar xvzf vorbis-tools-<VERSION>.tar.gz | tar xvzf vorbis-tools-<VERSION>.tar.gz | ||
cd vorbis-tools-<VERSION> | cd vorbis-tools-<VERSION> | ||
| − | ./configure --prefix=/usr --with-ogg-libraries=/usr/local/lib | + | ./configure --prefix=/usr \ |
| + | --with-ogg-libraries=/usr/local/lib | ||
make | make | ||
make install | make install | ||
| Zeile 106: | Zeile 108: | ||
tar xvzf transcode-<VERSION>.tar.gz | tar xvzf transcode-<VERSION>.tar.gz | ||
cd transcode-<VERSION> | cd transcode-<VERSION> | ||
| − | ./configure --prefix=/usr --with-avifile-mods=no | + | ./configure --prefix=/usr \ |
| + | --with-avifile-mods=no | ||
make | make | ||
make install | make install | ||
Version vom 16. Oktober 2004, 23:04 Uhr
Inhaltsverzeichnis |
Beschreibung
Umwandeln der Aufnahmen in folgende Formate: ogm ( xvid / vorbis ), avi ( xvid / mp3 ), mp4 ( xvid / aac ), mpg ( remuxed meg2 ), vcd ( mpeg1 cbr ), svcd ( mpeg2 vbr ).
Dieses Plugin beinhaltet ein Menu um die erstellten images komfortabel per FB auf CD zu bannen.
Hardwareanforderungen
- Brenner (optional)
Softwareanforderungen
- libdvb
- lame
- libogg
- libvorbis
- ogmtools
- vorbistools
- divx4linux
- mjpegtools
- vcdimager
- transcode
- mpeg4ip
- faac
- xvid
- cdrecord (für Brennprogramme folgt später extra eine Rubrik)
- mkisofs (für Brennprogramme folgt später extra eine Rubrik)
Installation
libdvb => siehe analogtv-plugin (allerdings mit --prefix=/usr)
cd $SOURCEDIR
tar xvzf lame-<VERSION>.tar.gz
cd lame-<VERSION>
./configure --prefix=/usr/local
make
make install
ldconfig
cd -
tar xvzf libogg-<VERSION>.tar.gz
cd libogg-<VERSION>
./configure --prefix=/usr/local
make
make install
ldconfig
cd -
tar xvzf libvorbis-<VERSION>.tar.gz
cd libvorbis-<VERSION>
./configure --prefix=/usr/local \
--with-ogg-libraries=/usr/local/lib
make
make install
ldconfig
cd -
tar jxvf ogmtools-<VERSION>.tar.bz2
cd ogmtools-<VERSION>
./configure --prefix=/usr
make
make install
ldconfig
cd -
tar xvzf vorbis-tools-<VERSION>.tar.gz
cd vorbis-tools-<VERSION>
./configure --prefix=/usr \
--with-ogg-libraries=/usr/local/lib
make
make install
ldconfig
cd -
tar xvzf divx4linux-<VERSION>.tgz
cd divx4linux-<VERSION>
sh install.sh
cd -
XviD-0.9.x ist zwingend! Bitte keine höheren Versionen verwenden, diese geben einen Fehler aus:
[transcode] critical: failed to init encoder
siehe README (Transcode) => XviD 0.9.x
Sollte man bei XviD auf der Homepage diese nicht finden, hier ist ein Mirror:
http://sourceforge.net/projects/xawdecode
tar jxvf xvidcore-<VERSION>.tar.bz2
cd xvidcore-<VERSION>/build/generic
./configure --prefix=/usr/local
make
make install
ln -s /usr/local/lib/libxvidcore.so.* /usr/local/lib/libxvidcore.so
ldconfig
cd -
tar xvzf mjpegtools-<VERSION>.tar.gz
cd mjpegtools-<VERSION>
./configure --prefix=/usr
make
make install
ldconfig
cd -
tar xvzf vcdimager-<VERSION>.tar.gz
cd vcdimager-<VERSION>
./configure --prefix=/usr
make
make install
ldconfig
cd -
tar xvzf transcode-<VERSION>.tar.gz
cd transcode-<VERSION>
./configure --prefix=/usr \
--with-avifile-mods=no
make
make install
cd -
tar xvzf faac-<VERSION>.tar.gz
cd faac
chmod 755 bootstrap
./bootstrap
./configure --prefix=/usr
make install
ldconfig
cd -
tar xvzf mpeg4ip-<VERSION>.tar.gz
cd mpeg4ip-<VERSION>
./bootstrap --prefix=/usr
make -k
make install -k
Probleme
- <= vdr-1.3.6
- Erstellung von VCD/SVCDs wollte hier nicht gelingen.
- Plugin wurde nicht nach den konventionen gepackt... Siehe
Links
| [1] | http://www.metzlerbros.org/dvb | libdvb |
| [2] | http://www.mp3dev.org/mp3 | lame |
| [3] | http://www.vorbis.com | vorbis |
| [4] | http://www.bunkus.org/videotools/ogmtools | ogmtools |
| [5] | http://www.xvid.org | xvid |
| [6] | http://mjpeg.sourceforge.net | mjpegtools |
| [7] | http://www.vcdimager.org | vcdimager |
| [8] | http://www.theorie.physik.uni-goettingen.de/~ostreich/transcode | transcode |
| [9] | http://mpeg4ip.sourceforge.net | mpeg4ip |
| [10] | http://www.peess.de/projects/transfron/transfron_plugin-eng.html | Homepage des Plugins |