OSDN Git Service

implement mysql function.(RC1)
[rec10/rec10-git.git] / rec10 / trunk / src / ts2epg.py
index 2d83c52..31fd10d 100644 (file)
@@ -17,16 +17,15 @@ def write(pout,ch):
     print "ts2epg処理"
     bctype=chdb.chsearch(ch)['bctype']
     print ch+":"+bctype
-    timet="180"
+    timet="90"
     if re.search(u'cs',bctype):
         mode="/CS"
-        timet="240"
+        timet="200"
     elif re.search(u'bs',bctype):
         mode="/BS"
-        timet="180"
+        timet="150"
     else :
         mode=chdb.bctypesearch(u'te'+ch)['ontv']
-    tsepg2xml=configreader.getpath("tsepg2xml")
     epgdump=configreader.getpath("epgdump")
     if os.access(pout+".ts", os.F_OK):
         os.remove(pout+".ts")
@@ -41,7 +40,6 @@ def write(pout,ch):
         t=t+1
         if t>10:
             break
-    #exe="export LANG=ja_JP.UTF-8 && /usr/bin/nice -n 19 wine "+tsepg2xml+" "+mode+" "+pout+".ts >"+pout
     exe="export LANG=ja_JP.UTF-8 && /usr/bin/nice -n 15 "+epgdump+" "+mode+" "+pout+".ts "+pout
     print exe
     os.system(exe)