User Tools

Site Tools


docs:tips_n_tricks:mythtv

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
docs:tips_n_tricks:mythtv [30.07.2011 21:11 CEST] – created peterdocs:tips_n_tricks:mythtv [25.10.2018 11:09 CEST] (current) peter
Line 1: Line 1:
 ====== MythTV ====== ====== MythTV ======
 +
 ===== Show the Video Source in the Channel Name ===== ===== Show the Video Source in the Channel Name =====
  
Line 5: Line 6:
   update channel set name = CONCAT(name,' (DVB-T)') where not name like '%DVB-%' and sourceid in (select sourceid from videosource where name = 'DVB-T' ;   update channel set name = CONCAT(name,' (DVB-T)') where not name like '%DVB-%' and sourceid in (select sourceid from videosource where name = 'DVB-T' ;
   update channel set name = CONCAT(name,' (Kab.)') where not name like '%Kab.%' and not name like '%Analog%' and sourceid in (select sourceid from videosource where name = 'Kabel Analog' ;   update channel set name = CONCAT(name,' (Kab.)') where not name like '%Kab.%' and not name like '%Analog%' and sourceid in (select sourceid from videosource where name = 'Kabel Analog' ;
 +
 +===== Set those channels visible that have EPG =====
 +
 +
 +  update channel set visible = 0 where not chanid in ( select distinct(chanid) from program) ;
 +  update channel set visible = 1 where  chanid in ( select distinct(chanid) from program) ;
 +
 +This works of course only after you alread did get EPG data.
 +
 +===== Watching DVD not working =====
 +
 +Either setting a region code
 +  regionset /dev/sr0
 +(see https://help.ubuntu.com/community/RestrictedFormats/PlayingDVDs)
 +or deleting all //libdvdcss2// data in ''~/.dvdcss'' for the respective DVD did help for me.
 +(I did both, afterwards it worked. Propably you need both, in that order)
 +
 +{{tag>DVD}}{{entry>DVD}}
 +
 +=======  =======
 +{{tag>MythTV}}{{entry>MythTV}}
  
docs/tips_n_tricks/mythtv.1312053083.txt.gz · Last modified: 30.07.2011 21:11 CEST by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki