- PyTivo
[pyTivo.git] / Config.py
blob97bcb33cb7c1e12005b702eb9dddd99d4623fb00
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.read(os.path.join(p, 'pyTivo.conf'))
11 def get169Setting(tsn):
12 if not tsn:
13 return True
15 if config.has_section('_tivo_' + tsn):
16 if config.has_option('_tivo_' + tsn, 'aspect169'):
17 if config.get('_tivo_' + tsn, 'aspect169').lower() == 'true':
18 return True
19 else:
20 return False
22 if tsn[:3] in BLACKLIST_169:
23 return False
25 return True
27 def getShares():
28 return filter( lambda x: not(x.startswith('_tivo_') or x == 'Server'), config.sections())
30 def getDebug():
31 try:
32 debug = config.get('Server', 'debug')
33 if debug.lower() == 'true':
34 return True
35 else:
36 return False
37 except NoOptionError:
38 return False
40 def get(section, key):
41 return config.get(section, key)
43 def getValidWidths():
44 return [1440, 720, 704, 544, 480, 352]
46 def getValidHeights():
47 return [720, 480] # Technically 240 is also supported
49 # Return the number in list that is nearest to x
50 # if two values are equidistant, return the larger
51 def nearest(x, list):
52 return reduce(lambda a, b: a if abs(x-a) < abs(x-b) or (abs(x-a) == abs(x-b)and a>b) else b, list)
54 def nearestTivoWidth(width):
55 return nearest(width, getValidWidths())
57 def getTivoHeight():
58 try:
59 height = int(config.get('Server', 'height'))
60 print nearest(height, getValidHeights())
61 return nearest(height, getValidHeights())
62 except NoOptionError: #default
63 return 480
65 def getTivoWidth():
66 try:
67 width = int(config.get('Server', 'width'))
68 print nearestTivoWidth(width)
69 return nearestTivoWidth(width)
70 except NoOptionError: #default
71 return 544
73 def getAudioBR():
74 try:
75 return config.get('Server', 'audio_br')
76 except NoOptionError: #default to 192
77 return '192K'
79 def getVideoBR():
80 try:
81 return config.get('Server', 'video_br')
82 except NoOptionError: #default to 4096K
83 return '4096K'