include 8:9
[pyTivo/krkeegan.git] / config.py
blobfc6e852be31de4f44dd8adf3206bbe125fc950d9
1 import ConfigParser, os
2 import re
3 from ConfigParser import NoOptionError
5 BLACKLIST_169 = ('540', '649')
7 config = ConfigParser.ConfigParser()
8 p = os.path.dirname(__file__)
9 config_file = os.path.join(p, 'pyTivo.conf')
10 config.read(config_file)
12 def reset():
13 global config
14 del config
15 config = ConfigParser.ConfigParser()
16 config.read(config_file)
18 def getGUID():
19 if config.has_option('Server', 'GUID'):
20 guid = config.get('Server', 'GUID')
21 else:
22 guid = '123456'
23 return guid
25 def getBeaconAddresses():
26 if config.has_option('Server', 'beacon'):
27 beacon_ips = config.get('Server', 'beacon')
28 else:
29 beacon_ips = '255.255.255.255'
30 return beacon_ips
32 def getPort():
33 return config.get('Server', 'Port')
35 def get169Setting(tsn):
36 if not tsn:
37 return True
39 if config.has_section('_tivo_' + tsn):
40 if config.has_option('_tivo_' + tsn, 'aspect169'):
41 try:
42 return config.getboolean('_tivo_' + tsn, 'aspect169')
43 except ValueError:
44 pass
46 if tsn[:3] in BLACKLIST_169:
47 return False
49 return True
51 def getShares(tsn=''):
52 shares = [(section, dict(config.items(section)))
53 for section in config.sections()
54 if not(section.startswith('_tivo_') or section == 'Server')]
56 if config.has_section('_tivo_' + tsn):
57 if config.has_option('_tivo_' + tsn, 'shares'):
58 # clean up leading and trailing spaces & make sure ref is valid
59 tsnshares = []
60 for x in config.get('_tivo_' + tsn, 'shares').split(','):
61 y = x.lstrip().rstrip()
62 if config.has_section(y):
63 tsnshares += [(y, dict(config.items(y)))]
64 if tsnshares:
65 shares = tsnshares
67 for name, data in shares:
68 if not data.get('auto_subshares', 'False').lower() == 'true':
69 continue
71 base_path = data['path']
72 try:
73 for item in os.listdir(base_path):
74 item_path = os.path.join(base_path, item)
75 if not os.path.isdir(item_path):
76 continue
78 new_name = name + '/' + item
79 new_data = dict(data)
80 new_data['path'] = item_path
82 shares.append((new_name, new_data))
83 except:
84 pass
86 return shares
88 def getDebug(ref):
89 if config.has_option('Server', 'debug'):
90 try:
91 return str2tuple(config.get('Server', 'debug')+',,')[ref]
92 except NoOptionError:
93 pass
94 return str2tuple('False,,')[ref]
96 def getHack83():
97 try:
98 debug = config.get('Server', 'hack83')
99 if debug.lower() == 'true':
100 return True
101 else:
102 return False
103 except NoOptionError:
104 return False
106 def getOptres(tsn = None):
107 if tsn and config.has_section('_tivo_' + tsn):
108 try:
109 return config.getboolean('_tivo_' + tsn, 'optres')
110 except NoOptionError, ValueError:
111 pass
112 try:
113 return config.getboolean('Server', 'optres')
114 except NoOptionError, ValueError:
115 return False
117 def getPixelAR(ref):
118 if config.has_option('Server', 'par'):
119 try:
120 return (True, config.getfloat('Server', 'par'))[ref]
121 except NoOptionError, ValueError:
122 pass
123 return (False, 1.0)[ref]
125 def get(section, key):
126 return config.get(section, key)
128 def getFFmpegTemplate(tsn):
129 if tsn and config.has_section('_tivo_' + tsn):
130 try:
131 return config.get('_tivo_' + tsn, 'ffmpeg_tmpl', raw=True)
132 except NoOptionError:
133 pass
134 try:
135 return config.get('Server', 'ffmpeg_tmpl', raw=True)
136 except NoOptionError: #default
137 return '%(video_codec)s %(video_fps)s %(video_br)s %(max_video_br)s \
138 %(buff_size)s %(aspect_ratio)s -comment pyTivo.py %(audio_br)s \
139 %(audio_fr)s %(audio_ch)s %(audio_codec)s %(copy_ts)s %(ffmpeg_pram)s %(format)s'
141 def getFFmpegPrams(tsn):
142 if tsn and config.has_section('_tivo_' + tsn):
143 try:
144 return config.get('_tivo_' + tsn, 'ffmpeg_pram', raw=True)
145 except NoOptionError:
146 pass
147 try:
148 return config.get('Server', 'ffmpeg_pram', raw=True)
149 except NoOptionError:
150 return None
152 def isHDtivo(tsn): # tsn's of High Definition Tivo's
153 return tsn != '' and tsn[:3] in ['648', '652']
155 def getValidWidths():
156 return [1920, 1440, 1280, 720, 704, 544, 480, 352]
158 def getValidHeights():
159 return [1080, 720, 480] # Technically 240 is also supported
161 # Return the number in list that is nearest to x
162 # if two values are equidistant, return the larger
163 def nearest(x, list):
164 return reduce(lambda a, b: closest(x, a, b), list)
166 def closest(x, a, b):
167 if abs(x - a) < abs(x - b) or (abs(x - a) == abs(x - b) and a > b):
168 return a
169 else:
170 return b
172 def nearestTivoHeight(height):
173 return nearest(height, getValidHeights())
175 def nearestTivoWidth(width):
176 return nearest(width, getValidWidths())
178 def getTivoHeight(tsn):
179 if tsn and config.has_section('_tivo_' + tsn):
180 try:
181 height = config.getint('_tivo_' + tsn, 'height')
182 return nearestTivoHeight(height)
183 except NoOptionError:
184 pass
185 try:
186 height = config.getint('Server', 'height')
187 return nearestTivoHeight(height)
188 except NoOptionError: #defaults for S3/S2 TiVo
189 if isHDtivo(tsn):
190 return 720
191 else:
192 return 480
194 def getTivoWidth(tsn):
195 if tsn and config.has_section('_tivo_' + tsn):
196 try:
197 width = config.getint('_tivo_' + tsn, 'width')
198 return nearestTivoWidth(width)
199 except NoOptionError:
200 pass
201 try:
202 width = config.getint('Server', 'width')
203 return nearestTivoWidth(width)
204 except NoOptionError: #defaults for S3/S2 TiVo
205 if isHDtivo(tsn):
206 return 1280
207 else:
208 return 544
210 def getAudioBR(tsn = None):
211 #convert to non-zero multiple of 64 to ensure ffmpeg compatibility
212 #compare audio_br to max_audio_br and return lowest
213 if tsn and config.has_section('_tivo_' + tsn):
214 try:
215 audiobr = int(max(int(strtod(config.get('_tivo_' + tsn, 'audio_br'))/1000), 64)/64)*64
216 return str(min(audiobr, getMaxAudioBR(tsn))) + 'k'
217 except NoOptionError:
218 pass
219 try:
220 audiobr = int(max(int(strtod(config.get('Server', 'audio_br'))/1000), 64)/64)*64
221 return str(min(audiobr, getMaxAudioBR(tsn))) + 'k'
222 except NoOptionError:
223 return str(min(384, getMaxAudioBR(tsn))) + 'k'
225 def getVideoBR(tsn = None):
226 if tsn and config.has_section('_tivo_' + tsn):
227 try:
228 return config.get('_tivo_' + tsn, 'video_br')
229 except NoOptionError:
230 pass
231 try:
232 return config.get('Server', 'video_br')
233 except NoOptionError: #defaults for S3/S2 TiVo
234 if isHDtivo(tsn):
235 return '8192k'
236 else:
237 return '4096K'
239 def getMaxVideoBR():
240 try:
241 return str(int(strtod(config.get('Server', 'max_video_br'))/1000)) + 'k'
242 except NoOptionError: #default to 17Mi
243 return '17408k'
245 def getBuffSize():
246 try:
247 return str(int(strtod(config.get('Server', 'bufsize'))))
248 except NoOptionError: #default 1024k
249 return '1024k'
251 def getMaxAudioBR(tsn = None):
252 #convert to non-zero multiple of 64 for ffmpeg compatibility
253 if tsn and config.has_section('_tivo_' + tsn):
254 try:
255 return int(int(strtod(config.get('_tivo_' + tsn, 'max_audio_br'))/1000)/64)*64
256 except NoOptionError:
257 pass
258 try:
259 return int(int(strtod(config.get('Server', 'max_audio_br'))/1000)/64)*64
260 except NoOptionError:
261 return int(448) #default to 448
263 def getAudioCodec(tsn = None):
264 if tsn and config.has_section('_tivo_' + tsn):
265 try:
266 return config.get('_tivo_' + tsn, 'audio_codec')
267 except NoOptionError:
268 pass
269 try:
270 return config.get('Server', 'audio_codec')
271 except NoOptionError:
272 return None
274 def getAudioCH(tsn = None):
275 if tsn and config.has_section('_tivo_' + tsn):
276 try:
277 return config.get('_tivo_' + tsn, 'audio_ch')
278 except NoOptionError:
279 pass
280 try:
281 return config.get('Server', 'audio_ch')
282 except NoOptionError:
283 return None
285 def getAudioFR(tsn = None):
286 if tsn and config.has_section('_tivo_' + tsn):
287 try:
288 return config.get('_tivo_' + tsn, 'audio_fr')
289 except NoOptionError:
290 pass
291 try:
292 return config.get('Server', 'audio_fr')
293 except NoOptionError:
294 return None
296 def getCopyTS(tsn = None):
297 if tsn and config.has_section('_tivo_' + tsn):
298 if config.has_option('_tivo_' + tsn, 'copy_ts'):
299 try:
300 return config.getboolean('_tivo_' + tsn, 'copy_ts')
301 except NoOptionError, ValueError:
302 pass
303 if config.has_option('Server', 'copy_ts'):
304 try:
305 return config.getboolean('Server', 'copy_ts')
306 except NoOptionError, ValueError:
307 pass
308 return True
310 def getVideoFPS(tsn = None):
311 if tsn and config.has_section('_tivo_' + tsn):
312 try:
313 return config.get('_tivo_' + tsn, 'video_fps')
314 except NoOptionError:
315 pass
316 try:
317 return config.get('Server', 'video_fps')
318 except NoOptionError:
319 return None
321 def getVideoCodec(tsn = None):
322 if tsn and config.has_section('_tivo_' + tsn):
323 try:
324 return config.get('_tivo_' + tsn, 'video_codec')
325 except NoOptionError:
326 pass
327 try:
328 return config.get('Server', 'video_codec')
329 except NoOptionError:
330 return None
332 def getFormat(tsn = None):
333 if tsn and config.has_section('_tivo_' + tsn):
334 try:
335 return config.get('_tivo_' + tsn, 'force_format')
336 except NoOptionError:
337 pass
338 try:
339 return config.get('Server', 'force_format')
340 except NoOptionError:
341 return None
343 def str2tuple(s):
344 items = s.split(',')
345 L = [x.strip() for x in items]
346 return tuple(L)
348 # Parse a bitrate using the SI/IEEE suffix values as if by ffmpeg
349 # For example, 2K==2000, 2Ki==2048, 2MB==16000000, 2MiB==16777216
350 # Algorithm: http://svn.mplayerhq.hu/ffmpeg/trunk/libavcodec/eval.c
351 def strtod(value):
352 prefixes = {'y': -24, 'z': -21, 'a': -18, 'f': -15, 'p': -12,
353 'n': -9, 'u': -6, 'm': -3, 'c': -2, 'd': -1,
354 'h': 2, 'k': 3, 'K': 3, 'M': 6, 'G': 9,
355 'T': 12, 'P': 15, 'E': 18, 'Z': 21, 'Y': 24}
356 p = re.compile(r'^(\d+)(?:([yzafpnumcdhkKMGTPEZY])(i)?)?([Bb])?$')
357 m = p.match(value)
358 if m is None:
359 raise SyntaxError('Invalid bit value syntax')
360 (coef, prefix, power, byte) = m.groups()
361 if prefix is None:
362 value = float(coef)
363 else:
364 exponent = float(prefixes[prefix])
365 if power == 'i':
366 # Use powers of 2
367 value = float(coef) * pow(2.0, exponent / 0.3)
368 else:
369 # Use powers of 10
370 value = float(coef) * pow(10.0, exponent)
371 if byte == 'B': # B == Byte, b == bit
372 value *= 8;
373 return value