Changed line endings
[pyTivo.git] / Config.py
blobb0d729b44ba2f716e6dd7642eb2ca49ced5a3b47
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 getHack83():
41 try:
42 debug = config.get('Server', 'hack83')
43 if debug.lower() == 'true':
44 return True
45 else:
46 return False
47 except NoOptionError:
48 return True
50 def get(section, key):
51 return config.get(section, key)
53 def getValidWidths():
54 return [1440, 720, 704, 544, 480, 352]
56 def getValidHeights():
57 return [720, 480] # Technically 240 is also supported
59 # Return the number in list that is nearest to x
60 # if two values are equidistant, return the larger
61 def nearest(x, list):
62 return reduce(lambda a, b: closest(x,a,b), list)
64 def closest(x,a, b):
65 if abs(x-a) < abs(x-b) or (abs(x-a) == abs(x-b)and a>b):
66 return a
67 else:
68 return b
71 def nearestTivoWidth(width):
72 return nearest(width, getValidWidths())
74 def getTivoHeight():
75 try:
76 height = int(config.get('Server', 'height'))
77 print nearest(height, getValidHeights())
78 return nearest(height, getValidHeights())
79 except NoOptionError: #default
80 return 480
82 def getTivoWidth():
83 try:
84 width = int(config.get('Server', 'width'))
85 print nearestTivoWidth(width)
86 return nearestTivoWidth(width)
87 except NoOptionError: #default
88 return 544
90 def getAudioBR():
91 try:
92 return config.get('Server', 'audio_br')
93 except NoOptionError: #default to 192
94 return '192K'
96 def getVideoBR():
97 try:
98 return config.get('Server', 'video_br')
99 except NoOptionError: #default to 4096K
100 return '4096K'