Sky-plugin

Aus VDR Wiki
(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
(Hardwareanforderungen: http://www.linuxtv.org/mpeg2/kfir.xml ??? Was ist denn eine "Sky Digibox" ???)
(Heraus aus der Kategorie Empfänger-Plugins. Kfir karten waren schon 2003 völlig veraltet.)
 
(22 dazwischenliegende Versionen von 17 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
 
==Beschreibung==
 
==Beschreibung==
[[Bild:sky-plugin.jpg|thumb|none|]]
+
'''Autor:''' Klaus Schmidinger
 +
 
 +
<!-- Aus README (GPL):
 +
The 'sky' plugin implements a new device for VDR, which is based on the
 +
MPEG2 encoder card described at linuxtv.org/mpeg2/kfir.xml. It
 +
allows you to connect the analog a/v output of your Sky Digibox to VDR,
 +
so that you can enjoy the full recording flexibility of VDR with your
 +
Sky subscription. Note that this is NOT something that does anything
 +
illegal, like decrypting the Sky programme without a subscription. You
 +
will need a Sky Digibox and a valid subscription in order to use this
 +
plugin. -->
 +
 
 +
===Status===
 +
kfir Karten waren analoge TV Karten mit MPEG Decoder. Diese Hardware ist völlig veraltet.
 +
 
 +
 
 
==Hardwareanforderungen==
 
==Hardwareanforderungen==
 
* Sky Digibox
 
* Sky Digibox
 
* http://www.linuxtv.org/mpeg2/kfir.xml ???
 
* http://www.linuxtv.org/mpeg2/kfir.xml ???
 +
* http://web.archive.org/web/20050208085717/http://www.linuxtv.org/mpeg2/kfir.xml  weil obiges original weg ist ...
  
 
==Softwareanforderungen==
 
==Softwareanforderungen==
Zeile 10: Zeile 26:
  
 
==Konfiguration==
 
==Konfiguration==
  shell> mkdir -p /etc/vdr/plugins/sky
+
  shell> mkdir -p [[Struktur|$VDRCONFIG]]/sky
  shell> cp $SOURCEDIR/VDR/PLUGIN/src/sky /etc/vdr/plugins/sky/channels.conf.sky
+
  shell> cp [[Struktur|$SOURCEDIR]]/VDR/PLUGIN/src/sky [[Struktur|$VDRCONFIG]]/plugins/sky/channels.conf.sky
  
Hier [[Peanut]] waren in der '''getskyepg.pl''' kleine anpassungen noetig.
+
Hier waren in der '''getskyepg.pl''' kleine Anpassungen nötig.
  
$LOGGER = "/usr/bin/logger -t SKYEPG";
+
  shell> which logger wget
$LOGGER = "/usr/bin/logger -t SKYEPG";
+
 
+
  shell> echo logger wget | xargs which
+
 
  /bin/logger
 
  /bin/logger
  /bin/wget
+
  /usr/bin/wget
  
  $WGET = "/bin/wget -q -O-";
+
  $WGET = "/usr/bin/wget -q -O-";
 
  $LOGGER = "/bin/logger -t SKYEPG";
 
  $LOGGER = "/bin/logger -t SKYEPG";
  
Zeile 32: Zeile 45:
 
Am besten in den '''PATH''' kopieren.
 
Am besten in den '''PATH''' kopieren.
  
  shell> cp $SOURCEDIR/VDR/PLUGIN/src/sky/getskyepg.pl /usr/local/bin
+
  shell> cp [[Struktur|$SOURCEDIR]]/VDR/PLUGIN/src/sky/getskyepg.pl /usr/local/bin
 
  shell> chmod 777 /usr/local/bin/getskyepg.pl
 
  shell> chmod 777 /usr/local/bin/getskyepg.pl
  
 
Test: ('''-D 1''' steht fuer einen Tag, '''{-h,-help}''' weiß mehr)
 
Test: ('''-D 1''' steht fuer einen Tag, '''{-h,-help}''' weiß mehr)
  
  shell> getskyepg.pl -D 1 -c /etc/vdr/plugins/sky/channels.conf.sky &
+
  shell> getskyepg.pl -D 1 -c [[Struktur|$VDRCONFIG]]/plugins/sky/channels.conf.sky &
 
  shell> tail -f /var/log/messages
 
  shell> tail -f /var/log/messages
 
  SKYEPG: received 45 lines
 
  SKYEPG: received 45 lines
Zeile 47: Zeile 60:
 
  SKYEPG: done
 
  SKYEPG: done
  
Spater kann dies via '''/etc/crontab''' geschehen (Bsp. Nacht's um 04:00 Uhr)
+
Später kann dies via '''/etc/crontab''' geschehen (Bsp. Nacht's um 04:00 Uhr)
  
  0 4    * * *  root    /usr/local/bin/getskyepg.pl -D 7 -c /etc/vdr/plugins/sky/channels.conf.sky
+
  0 4    * * *  root    /usr/local/bin/getskyepg.pl -D 7 -c [[Struktur|$VDRCONFIG]]/plugins/sky/channels.conf.sky
  
==Probleme==
 
 
==Links==
 
==Links==
{|
+
# [http://www.tvdr.de Homepage des Plugins]
| [1]
+
 
| http://www.cadsoft.de/vdr
+
[[Kategorie:Veraltete Plugins]]
| Homepage des Plugins
+
{{i18n|sky-plugin}}
|}[[Kategorie:Plugins]]
+

Aktuelle Version vom 10. August 2013, 17:57 Uhr

Inhaltsverzeichnis

[Bearbeiten] Beschreibung

Autor: Klaus Schmidinger


[Bearbeiten] Status

kfir Karten waren analoge TV Karten mit MPEG Decoder. Diese Hardware ist völlig veraltet.


[Bearbeiten] Hardwareanforderungen

[Bearbeiten] Softwareanforderungen

  • wget (optional fuer den EPG Import)
  • logger (optional fuer den EPG Import)

[Bearbeiten] Konfiguration

shell> mkdir -p $VDRCONFIG/sky
shell> cp $SOURCEDIR/VDR/PLUGIN/src/sky $VDRCONFIG/plugins/sky/channels.conf.sky

Hier waren in der getskyepg.pl kleine Anpassungen nötig.

shell> which logger wget
/bin/logger
/usr/bin/wget
$WGET = "/usr/bin/wget -q -O-";
$LOGGER = "/bin/logger -t SKYEPG";

Sollte auch funktionieren?

$WGET = "wget -q -O-";
$LOGGER = "logger -t SKYEPG";

Am besten in den PATH kopieren.

shell> cp $SOURCEDIR/VDR/PLUGIN/src/sky/getskyepg.pl /usr/local/bin
shell> chmod 777 /usr/local/bin/getskyepg.pl

Test: (-D 1 steht fuer einen Tag, {-h,-help} weiß mehr)

shell> getskyepg.pl -D 1 -c $VDRCONFIG/plugins/sky/channels.conf.sky &
shell> tail -f /var/log/messages
SKYEPG: received 45 lines
SKYEPG: generated 183 EPG events
SKYEPG: processing channel sky_one_mix - S28.2E-2-2027-5104
SKYEPG: reading www.bleb.org/tv/data/listings/0/sky_one_mix.xml
..........................
SKYEPG: received 171 lines
SKYEPG: done

Später kann dies via /etc/crontab geschehen (Bsp. Nacht's um 04:00 Uhr)

0 4    * * *   root    /usr/local/bin/getskyepg.pl -D 7 -c $VDRCONFIG/plugins/sky/channels.conf.sky

[Bearbeiten] Links

  1. Homepage des Plugins
In anderen Sprachen