- pyTivo
[pyTivo/krkeegan.git] / Config.py
blobaf0471789efcd49bec16e8bfd3af76e5a567b679
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 [720, 704, 544, 480, 352]
46 def getValidHeights():
47 return [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 getTivoWidth():
58 try:
59 width = int(config.get('Server', 'width'))
60 return nearestTivoWidth(width)
61 except NoOptionError: #default
62 return 544
64 def getAudioBR():
65 try:
66 return config.get('Server', 'audio_br')
67 except NoOptionError: #default to 192
68 return '192K'
70 def getVideoBR():
71 try:
72 return config.get('Server', 'video_br')
73 except NoOptionError: #default to 4096K
74 return '4096K'