OSDN Git Service

add ch scan and installer.
[rec10/rec10-git.git] / rec10 / trunk / src / ts2epg.py
1 #!/usr/bin/python
2 # coding: UTF-8
3 # Rec10 TS Recording Tools
4 # Copyright (C) 2009 Yukikaze
5 #import sys # モジュール属性 argv を取得するため
6 import os
7 import re
8 import time
9
10 import chdb
11 import configreader
12 import tv2ts
13 import recdblist
14
15 def write(pout, ch):
16     """
17     tsを取得してepgの入ったxmlとして書き出す
18     """
19     timet = "90"
20     if re.search(u'cs', bctype):
21         timet = "180"
22     elif re.search(u'bs', bctype):
23         timet = "240"
24     write_time(pout, ch ,timet)
25 def write_time(pout, ch ,time):
26     """
27     指定された時間分tsを取得してepgの入ったxmlとして書き出す
28     """
29     recdblist.printutf8(u"Ts-EPG XML書き出し処理開始")
30     bctype = chdb.chsearch(ch)['bctype']
31     recdblist.printutf8(ch + ":" + bctype)
32     timet = time
33     if re.search(u'cs', bctype):
34         mode = "/CS"
35     elif re.search(u'bs', bctype):
36         mode = "/BS"
37     else:
38         mode = chdb.bctypesearch(u'te' + ch)['ontv']
39     epgdump = configreader.getpath("epgdump")
40     if os.access(pout + ".ts", os.F_OK):
41         os.remove(pout + ".ts")
42     time.sleep(10)
43     tv2ts.tv2tsmix(pout + ".ts", ch, timet)
44     exe = "export LANG=ja_JP.UTF-8 && nice -n 15 " + epgdump + " " + mode + " " + pout + ".ts " + pout
45     recdblist.printutf8(exe)
46     os.system(exe)
47     time.sleep(10)
48