Dear Wiki user, You have subscribed to a wiki page or wiki category on "Freevo Wiki" for change notification.
The following page has been changed by Dirk Meyer: http://freevo.sourceforge.net/cgi-bin/moin.cgi/DVB ------------------------------------------------------------------------------ @@ -1 +1,43 @@ == DVB == + +Just a brain-dump right now, I will update it later. This only works with 1.5rc4 or later. + +TODO for this doc: better description and some channels.conf tips. + + +=== Configuration === + +Create a channels.conf, make sure no / are in the names (mplayer doesn't like that). But it into the .mplayer (and .xine) directory in your home. Add the TV_CHANNELS configuration to the local_conf.py: + +{{{ +TV_CHANNELS = [ + ( 'ard.de', 'ARD', 'Das Erste RB' ), + ( 'zdf.de', 'ZDF', 'ZDF' ), + ( 'ndr.de', 'NDR', 'NDR RB' ), + ( 'rtl.de', 'RTL', 'RTL Television' ), + ( 'sat1.de', 'SAT.1', 'SAT.1' ), + ( 'rtl2.de', 'RTL 2', 'RTL2' ), + ( 'prosieben.de', 'PRO 7', 'ProSieben' ), + ( 'kabel1.de', 'KABEL 1', 'KABEL1' ), + ( 'vox.de', 'VOX', 'VOX' ), + ( 'n24.de', 'N24', 'N24' ), + ( 'arte-tv.com', 'ARTE', 'arte' ), + ( 'C3sat.de', '3SAT', 'Info 3sat' ), + ( 'superrtl.de', 'Super RTL', 'Super RTL' ), + ( 'kika.de', 'Kika', 'Doku KiKa' ) ] +}}} + +The first line is the xmltv name, the second the Freevo display name and the last the channels.conf name. Use tv_grab and after that tv_grab --query to get a template for your configuration. + +Now switch the VideoGroup to dvb. Add to your local_conf.py + +{{{ +VIDEO_GROUPS[0].group_type = 'dvb' +}}} + + +=== Recording === +{{{ +VCR_CMD = CONF.mplayer + ' -dumpstream -dumpfile %(filename)s "dvb://%(channel)s"' +TV_RECORDFILE_SUFFIX = '.ts' +}}} ------------------------------------------------------- This SF.Net email sponsored by Black Hat Briefings & Training. Attend Black Hat Briefings & Training, Las Vegas July 24-29 - digital self defense, top technical experts, no vendor pitches, unmatched networking opportunities. Visit www.blackhat.com _______________________________________________ Freevo-wikilog mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-wikilog
