Mhwepg

Aus VDR Wiki
(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
(Installation)
(Konfiguration)
Zeile 39: Zeile 39:
 
  [http://jrepetto.free.fr/telepiu/index.htm Sky (Italia)]                  : echo "/usr/local/bin/loadepg.pl -d localhost -p 2001 -s S13.0E -f 11880"|at now
 
  [http://jrepetto.free.fr/telepiu/index.htm Sky (Italia)]                  : echo "/usr/local/bin/loadepg.pl -d localhost -p 2001 -s S13.0E -f 11880"|at now
 
  [http://jrepetto.free.fr/cyfra/index.htm Cyfra+ (Poland)]                : echo "/usr/local/bin/loadepg.pl -d localhost -p 2001 -s S13.0E -f 10719"|at now
 
  [http://jrepetto.free.fr/cyfra/index.htm Cyfra+ (Poland)]                : echo "/usr/local/bin/loadepg.pl -d localhost -p 2001 -s S13.0E -f 10719"|at now
 
Viel verkehrt kann man nicht machen, der mhwepg.log ist unter '''/var/log''' zu finden, bei Erfolg:
 
 
<pre>
 
UTC Offset = 0
 
Country = ESP, Region = 1
 
Local Time Offset = 3600
 
Next Local Time Offset = 7200
 
Date of change = 25/03/2001
 
Reading titles ...
 
Reading summaries ...
 
Nb of summaries : 12419
 
Nb of titles : 11588
 
Writing EPG data to file ...
 
Nb of channels = 82
 
</pre>
 
 
Auslagerort ist '''/tmp:/var''' beides ist in der '''loadepg.pl''' definiert, und kann dort angepasst werden:
 
 
<pre>
 
system( "./mhwepg -o /tmp/epg.tmp &>/var/log/mhwepg.log" );
 
                    ^^^^^^^^^^^^  ^^^^^^^^^^^^^^^^^^^
 
....
 
open( FILE, "/tmp/epg.tmp" );
 
            ^^^^^^^^^^^^
 
</pre>
 
  
 
==Probleme==
 
==Probleme==

Version vom 17. Dezember 2005, 14:12 Uhr

Inhaltsverzeichnis

Beschreibung

(M)edia(H)igh(W)ay EPG ist ein Programm um EPG Daten via Satelite zu empfangen, die Informationen werden von der Canal+ group (Mediahighway receivers) bereit gestellt.

Mhwepg bringt die Daten in ein VDR konformes Format.

Kanäle

Canal Satellite Numérique
Canal Digitaal
Sky Italia
Cyfra+

Hardwareanforderungen

  • DVB(s)

Softwareanforderungen

  • mhwepg
  • loadepg
  • perl
  • at (Job-Manager)

Installation

cd $SOURCEDIR
wget http://jrepetto.free.fr/mhwepg-<VERSION>.tar.gz
tar zxvf mhwepg-<VERSION>.tar.gz
cd mhwepg-<VERSION>
make
wget http://gentoo.fh-luh.de/files/mhwepg/loadepg.pl
chmod +x loadepg.pl
cp mhwepg loadepg.pl /usr/local/bin

Konfiguration

Einträge commands.conf

Canal Digitaal (Netherlands)   : echo "/usr/local/bin/loadepg.pl -d localhost -p 2001 -s S19.2E -f 12515"|at now
Digital+ (Spain)               : echo "/usr/local/bin/loadepg.pl -d localhost -p 2001 -s S19.2E -f 10847"|at now
Canal+/CanalSatellite (France) : echo "/usr/local/bin/loadepg.pl -d localhost -p 2001 -s S19.2E -f 12363"|at now
Sky (Italia)                   : echo "/usr/local/bin/loadepg.pl -d localhost -p 2001 -s S13.0E -f 11880"|at now
Cyfra+ (Poland)                : echo "/usr/local/bin/loadepg.pl -d localhost -p 2001 -s S13.0E -f 10719"|at now

Probleme

Don't know if something changed in the driver in kernel 2.6, but I couldn't get the program to work even after patching. It seems that the default buffer size is too small for everything to work smoothly. What solved my problem was adding the following lines at the beginning of SetFiltSection, right after the line struct dmx_sct_filter_params sctFilterParams;

        if (ioctl(fd, DMX_SET_BUFFER_SIZE, 10*188*1024)<0) {
          perror("DMX SET BUFFER SIZE");
          exit(0);
        }

I'm puzzled because 10*188*1024 should be the default buffer size, but before the modification it didn't work, now it does so....

Wer trotzdem noch Probleme hat, EPG-Informationen zu empfangen, kann versuchen das Modul 'dvb-core' mit der Option 'dvb_shutdown_timeout=0' zu laden. Dadurch soll verhindert werden, dass die Karte nach kurzer Zeit das Signal verliert.

Optionen

Parameter Beschreibung
-a <adapter number> Number of the DVB adapter (default : 0)
-d <demux number> Number of the DVB demux (default : 0)
-s <source> Name of the source, as defined by the "sources.conf' file of VDR. If no source is specified, only the SID will be written to the output file.
-e <file> Name of the file containing the channels equivalences.
-t number local time offset (in seconds)
-o <output file> Output file (default: stdout)
-l Send the channels list to stderr
-h Help

Links

[1] http://jrepetto.free.fr Homepage Mhwepg
[2] http://www.www.lukkinosat.altervista.org/loadepg-0.4.tar.bz2 Aktuelle Scripts