9 from ConfigParser
import NoOptionError
11 guid
= ''.join([random
.choice(string
.letters
) for i
in range(10)])
13 config
= ConfigParser
.ConfigParser()
15 p
= os
.path
.dirname(__file__
)
16 config_files
= ['/etc/pyTivo.conf', os
.path
.join(p
, 'pyTivo.conf')]
18 configs_found
= config
.read(config_files
)
20 print ('ERROR: pyTivo.conf does not exist.\n' +
21 'You must create this file before running pyTivo.')
26 newconfig
= ConfigParser
.ConfigParser()
27 newconfig
.read(config_files
)
31 f
= open(configs_found
[-1], 'w')
36 if config
.has_option('Server', 'GUID'):
37 return config
.get('Server', 'GUID')
41 def getTivoUsername():
42 return config
.get('Server', 'tivo_username')
44 def getTivoPassword():
45 return config
.get('Server', 'tivo_password')
47 def getBeaconAddresses():
48 if config
.has_option('Server', 'beacon'):
49 beacon_ips
= config
.get('Server', 'beacon')
51 beacon_ips
= '255.255.255.255'
55 return config
.get('Server', 'Port')
57 def get169Blacklist(tsn
): # tivo does not pad 16:9 video
58 return tsn
and not isHDtivo(tsn
) and not get169Letterbox(tsn
)
59 # verified Blacklist Tivo's are ('130', '240', '540')
60 # It is assumed all remaining non-HD and non-Letterbox tivos are Blacklist
62 def get169Letterbox(tsn
): # tivo pads 16:9 video for 4:3 display
63 return tsn
and tsn
[:3] in ['649']
65 def get169Setting(tsn
):
69 tsnsect
= '_tivo_' + tsn
70 if config
.has_section(tsnsect
):
71 if config
.has_option(tsnsect
, 'aspect169'):
73 return config
.getboolean(tsnsect
, 'aspect169')
77 if get169Blacklist(tsn
) or get169Letterbox(tsn
):
82 def getShares(tsn
=''):
83 shares
= [(section
, dict(config
.items(section
)))
84 for section
in config
.sections()
85 if not (section
.startswith('_tivo_')
86 or section
.startswith('logger_')
87 or section
.startswith('handler_')
88 or section
.startswith('formatter_')
89 or section
in ('Server', 'loggers', 'handlers',
94 tsnsect
= '_tivo_' + tsn
95 if config
.has_section(tsnsect
) and config
.has_option(tsnsect
, 'shares'):
96 # clean up leading and trailing spaces & make sure ref is valid
98 for x
in config
.get(tsnsect
, 'shares').split(','):
100 if config
.has_section(y
):
101 tsnshares
.append((y
, dict(config
.items(y
))))
109 return config
.getboolean('Server', 'debug')
110 except NoOptionError
, ValueError:
113 def getOptres(tsn
=None):
114 if tsn
and config
.has_section('_tivo_' + tsn
):
116 return config
.getboolean('_tivo_' + tsn
, 'optres')
117 except NoOptionError
, ValueError:
119 section_name
= get_section(tsn
)
120 if config
.has_section(section_name
):
122 return config
.getboolean(section_name
, 'optres')
123 except NoOptionError
, ValueError:
126 return config
.getboolean('Server', 'optres')
127 except NoOptionError
, ValueError:
131 if config
.has_option('Server', 'par'):
133 return (True, config
.getfloat('Server', 'par'))[ref
]
134 except NoOptionError
, ValueError:
136 return (False, 1.0)[ref
]
138 def get(section
, key
):
139 return config
.get(section
, key
)
142 if config
.has_option('Server', 'ffmpeg_wait'):
143 return max(int(float(config
.get('Server', 'ffmpeg_wait'))), 1)
147 def getFFmpegTemplate(tsn
):
148 tmpl
= get_tsn('ffmpeg_tmpl', tsn
, True)
151 return '%(video_codec)s %(video_fps)s %(video_br)s %(max_video_br)s \
152 %(buff_size)s %(aspect_ratio)s -comment pyTivo.py %(audio_br)s \
153 %(audio_fr)s %(audio_ch)s %(audio_codec)s %(audio_lang)s \
154 %(ffmpeg_pram)s %(format)s'
156 def getFFmpegPrams(tsn
):
157 return get_tsn('ffmpeg_pram', tsn
, True)
159 def isHDtivo(tsn
): # tsn's of High Definition Tivo's
160 return bool(tsn
and tsn
[:3] in ['648', '652', '658'])
162 def getValidWidths():
163 return [1920, 1440, 1280, 720, 704, 544, 480, 352]
165 def getValidHeights():
166 return [1080, 720, 480] # Technically 240 is also supported
168 # Return the number in list that is nearest to x
169 # if two values are equidistant, return the larger
170 def nearest(x
, list):
171 return reduce(lambda a
, b
: closest(x
, a
, b
), list)
173 def closest(x
, a
, b
):
176 if da
< db
or (da
== db
and a
> b
):
181 def nearestTivoHeight(height
):
182 return nearest(height
, getValidHeights())
184 def nearestTivoWidth(width
):
185 return nearest(width
, getValidWidths())
187 def getTivoHeight(tsn
):
188 height
= get_tsn('height', tsn
)
190 return nearestTivoHeight(int(height
))
191 return [480, 720][isHDtivo(tsn
)]
193 def getTivoWidth(tsn
):
194 width
= get_tsn('width', tsn
)
196 return nearestTivoWidth(int(width
))
197 return [544, 1280][isHDtivo(tsn
)]
200 return max(int(strtod(i
)) / 64000, 1) * 64
202 def getAudioBR(tsn
=None):
203 rate
= get_tsn('audio_br', tsn
)
206 # convert to non-zero multiple of 64 to ensure ffmpeg compatibility
207 # compare audio_br to max_audio_br and return lowest
208 return str(min(_trunc64(rate
), getMaxAudioBR(tsn
))) + 'k'
211 return str(int(strtod(i
)) / 1000) + 'k'
213 def getVideoBR(tsn
=None):
214 rate
= get_tsn('video_br', tsn
)
217 return ['4096K', '16384K'][isHDtivo(tsn
)]
219 def getMaxVideoBR(tsn
=None):
220 rate
= get_tsn('max_video_br', tsn
)
225 def getVideoPCT(tsn
=None):
226 pct
= get_tsn('video_pct', tsn
)
231 def getBuffSize(tsn
=None):
232 size
= get_tsn('bufsize', tsn
)
235 return ['1024k', '4096k'][isHDtivo(tsn
)]
237 def getMaxAudioBR(tsn
=None):
238 rate
= get_tsn('max_audio_br', tsn
)
239 # convert to non-zero multiple of 64 for ffmpeg compatibility
241 return _trunc64(rate
)
244 def get_section(tsn
):
245 return ['_tivo_SD', '_tivo_HD'][isHDtivo(tsn
)]
247 def get_tsn(name
, tsn
=None, raw
=False):
248 if tsn
and config
.has_section('_tivo_' + tsn
):
250 return config
.get('_tivo_' + tsn
, name
, raw
)
251 except NoOptionError
:
253 section_name
= get_section(tsn
)
254 if config
.has_section(section_name
):
256 return config
.get(section_name
, name
, raw
)
257 except NoOptionError
:
260 return config
.get('Server', name
, raw
)
261 except NoOptionError
:
265 def getAudioCodec(tsn
=None):
266 return get_tsn('audio_codec', tsn
)
268 def getAudioCH(tsn
=None):
269 return get_tsn('audio_ch', tsn
)
271 def getAudioFR(tsn
=None):
272 return get_tsn('audio_fr', tsn
)
274 def getAudioLang(tsn
=None):
275 return get_tsn('audio_lang', tsn
)
277 def getCopyTS(tsn
=None):
278 return get_tsn('copy_ts', tsn
)
280 def getVideoFPS(tsn
=None):
281 return get_tsn('video_fps', tsn
)
283 def getVideoCodec(tsn
=None):
284 return get_tsn('video_codec', tsn
)
286 def getFormat(tsn
=None):
287 return get_tsn('format', tsn
)
289 # Parse a bitrate using the SI/IEEE suffix values as if by ffmpeg
290 # For example, 2K==2000, 2Ki==2048, 2MB==16000000, 2MiB==16777216
291 # Algorithm: http://svn.mplayerhq.hu/ffmpeg/trunk/libavcodec/eval.c
293 prefixes
= {'y': -24, 'z': -21, 'a': -18, 'f': -15, 'p': -12,
294 'n': -9, 'u': -6, 'm': -3, 'c': -2, 'd': -1,
295 'h': 2, 'k': 3, 'K': 3, 'M': 6, 'G': 9,
296 'T': 12, 'P': 15, 'E': 18, 'Z': 21, 'Y': 24}
297 p
= re
.compile(r
'^(\d+)(?:([yzafpnumcdhkKMGTPEZY])(i)?)?([Bb])?$')
300 raise SyntaxError('Invalid bit value syntax')
301 (coef
, prefix
, power
, byte
) = m
.groups()
305 exponent
= float(prefixes
[prefix
])
308 value
= float(coef
) * pow(2.0, exponent
/ 0.3)
311 value
= float(coef
) * pow(10.0, exponent
)
312 if byte
== 'B': # B == Byte, b == bit
317 if (config
.has_section('loggers') and
318 config
.has_section('handlers') and
319 config
.has_section('formatters')):
321 logging
.config
.fileConfig(config_files
)
324 logging
.basicConfig(level
=logging
.DEBUG
)
326 logging
.basicConfig(level
=logging
.INFO
)