Changes between Version 3 and Version 4 of HDTV

Show
Ignore:
Timestamp:
12/08/07 07:53:19 (5 years ago)
Author:
jaymzjulian (IP: 202.7.176.138)
Comment:

add dupe recordings on multituner

Legend:

Unmodified
Added
Removed
Modified
  • HDTV

    v3 v4  
    383835 8    * * *   root     /usr/local/bin/setMythTVflags --quiet /home/shepherd/.shepherd/output.xmltv && mythbackend -v none --resched 
    3939}}} 
     40 
     41Additionally, if you have multiple tuners, myth may attempt to record the same program on both if it doens't have a programid set (as, for examples, movies often do not).   A simple bit of SQL for synthesising one for unknown programs from the starttime+endtime+title will make short work of such cases. 
     42 
     43{{{ 
     44    echo 'update program set programid=concat(starttime,endtime,title) where programid="";' | mysql mythconverg 
     45}}} 
     46