Teletext-plugin
Aus VDR Wiki
(Unterschied zwischen Versionen)
(none <-> " ") |
(M) |
||
Zeile 6: | Zeile 6: | ||
* ffmpeg | * ffmpeg | ||
==Installation== | ==Installation== | ||
− | <pre>cd $SOURCEDIR | + | <pre> |
+ | cd $SOURCEDIR | ||
tar xvzf ffmpeg-<VERSION>.tar.gz | tar xvzf ffmpeg-<VERSION>.tar.gz | ||
ln -s ffmpeg-<VERSION> ffmpeg | ln -s ffmpeg-<VERSION> ffmpeg | ||
cd ffmpeg | cd ffmpeg | ||
− | ./configure --prefix=/usr/local --enable-shared | + | ./configure --prefix=/usr/local \ |
+ | --enable-shared | ||
make | make | ||
make install | make install | ||
− | ldconfig</pre> | + | ldconfig |
+ | </pre> | ||
==Konfiguration== | ==Konfiguration== | ||
Für das Plugin selbst benötigen wir einen Patch, siehe Links: | Für das Plugin selbst benötigen wir einen Patch, siehe Links: |
Version vom 16. Oktober 2004, 23:05 Uhr
Inhaltsverzeichnis |
Beschreibung
Mit diesem Plugin werden Videotext/Teletext-Seiten auf dem Fernseher angezeigt.
Hardwareanforderungen
Softwareanforderungen
- ffmpeg
Installation
cd $SOURCEDIR tar xvzf ffmpeg-<VERSION>.tar.gz ln -s ffmpeg-<VERSION> ffmpeg cd ffmpeg ./configure --prefix=/usr/local \ --enable-shared make make install ldconfig
Konfiguration
Für das Plugin selbst benötigen wir einen Patch, siehe Links:
cd /usr/local/src/VDR/PLUGINS/src/teletext-0.7.6 zcat teletext-0.7.6-ffmpeg-0.4.6.diff.gz | patch
Im Anschluss ist das Makefile, wie folgt anzupassen:
### The directory environment: +NEWSTRUCT=1 -FFMDIR = ../../../../ffmpeg +FFMDIR = /usr/local/include/ffmpeg
Nun sollte sich das Plugin ohne Probleme übersetzen lassen.
In der /etc/fstab legen wir ein Verzeichnis zum auslagern an:
... tmpfs /vtx tmpfs size=124m 0 0 ...
Probleme
- >= 1.3.6
Links
[1] | http://ffmpeg.sourceforge.net | Projekt Homepage von FFmpeg |
[2] | http://www.dapeace.de/teletext.htm | Homepage des Plugins |
[3] | http://linvdr.org/download/vdr-teletext | Download Mirror |
[4] | http://www.vdrportal.de/board/thread.php?threadid=1742 | Patch |