Teletext-plugin
Aus VDR Wiki
(Unterschied zwischen Versionen)
(M) |
|||
Zeile 1: | Zeile 1: | ||
==Beschreibung== | ==Beschreibung== | ||
Mit diesem Plugin werden [[Videotext]]/Teletext-Seiten auf dem [[Fernseher]] angezeigt. | Mit diesem Plugin werden [[Videotext]]/Teletext-Seiten auf dem [[Fernseher]] angezeigt. | ||
+ | |||
+ | http://www.vdrportal.de/board/gallery/data/media/1/teletext.jpg | ||
==Hardwareanforderungen== | ==Hardwareanforderungen== | ||
Zeile 9: | Zeile 11: | ||
==Installation== | ==Installation== | ||
− | + | <pre>cd /usr/local/src | |
− | + | tar xvzf ffmpeg-0.4.6.tar.gz | |
− | + | ln -s ffmpeg-0.4.6 ffmpeg | |
− | + | cd ffmpeg | |
− | + | ./configure --enable-shared | |
− | + | make | |
− | + | make install | |
− | + | 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: | ||
− | + | <pre>cd /usr/local/src/VDR/PLUGINS/src/teletext-0.7.6 | |
− | + | zcat teletext-0.7.6-ffmpeg-0.4.6.diff.gz | patch | |
− | + | patching file Makefile | |
− | + | patching file mp1osd.c | |
− | + | patching file mp1osd.h</pre> | |
− | + | ||
− | + | ||
Im Anschluss ist das Makefile, wie folgt anzupassen: | Im Anschluss ist das Makefile, wie folgt anzupassen: | ||
+ | <pre>### The directory environment: | ||
+ | +NEWSTRUCT=1 | ||
− | + | -FFMDIR = ../../../../ffmpeg | |
− | + | +FFMDIR = /usr/local/include/ffmpeg</pre> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
Nun sollte sich das Plugin ohne Probleme übersetzen lassen. | Nun sollte sich das Plugin ohne Probleme übersetzen lassen. | ||
− | |||
/etc/[[fstab]] | /etc/[[fstab]] | ||
− | + | <pre>... | |
− | + | /dev/fd0 /media/floppy auto noauto,user,sync 0 0 | |
− | + | tmpfs /vtx tmpfs size=124m 0 0</pre> | |
− | + | ||
− | + | ||
==Probleme== | ==Probleme== | ||
− | >= 1.3.6 | + | <pre>>= 1.3.6</pre> |
− | + | ||
==Links== | ==Links== | ||
{| | {| |
Version vom 13. August 2004, 13:53 Uhr
Inhaltsverzeichnis |
Beschreibung
Mit diesem Plugin werden Videotext/Teletext-Seiten auf dem Fernseher angezeigt.
Hardwareanforderungen
Keine besonderen.
Softwareanforderungen
ffmpeg
Installation
cd /usr/local/src tar xvzf ffmpeg-0.4.6.tar.gz ln -s ffmpeg-0.4.6 ffmpeg cd ffmpeg ./configure --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 patching file Makefile patching file mp1osd.c patching file mp1osd.h
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. /etc/fstab
... /dev/fd0 /media/floppy auto noauto,user,sync 0 0 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 |