Teletext-plugin

Aus VDR Wiki
(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
 
(/etc/fstab?)
Zeile 3: Zeile 3:
  
 
==Hardwareanforderungen==
 
==Hardwareanforderungen==
 +
Keine besonderen.
 +
 
==Softwareanforderungen==
 
==Softwareanforderungen==
 +
ffmpeg
 +
 
==Installation==
 
==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==
 
==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==
 
==Probleme==
 +
>= 1.3.6
 +
 
==Links==
 
==Links==
 
{|
 
{|
 +
| [1]
 +
| http://ffmpeg.sourceforge.net
 +
| Projekt Homepage von FFmpeg
 +
|-
 
| [1]
 
| [1]
 
| http://www.dapeace.de/teletext.htm
 
| http://www.dapeace.de/teletext.htm
Zeile 16: Zeile 59:
 
| http://linvdr.org/download/vdr-teletext
 
| http://linvdr.org/download/vdr-teletext
 
| Download Mirror
 
| Download Mirror
 +
|-
 +
| [4]
 +
| http://www.vdrportal.de/board/thread.php?threadid=1742
 +
| Patch
 
|}
 
|}

Version vom 12. Juli 2004, 07:36 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
[1] http://www.dapeace.de/teletext.htm Homepage des Plugins
[2] http://linvdr.org/download/vdr-teletext Download Mirror
[4] http://www.vdrportal.de/board/thread.php?threadid=1742 Patch