1 import ConfigParser
, os
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'))
12 if config
.has_option('Server', 'GUID'):
13 guid
= config
.get('Server', 'GUID')
18 def getBeaconAddresses():
19 if config
.has_option('Server', 'beacon'):
20 beacon_ips
= config
.get('Server', 'beacon')
22 beacon_ips
= '255.255.255.255'
26 return config
.get('Server', 'Port')
28 def get169Setting(tsn
):
32 if config
.has_section('_tivo_' + tsn
):
33 if config
.has_option('_tivo_' + tsn
, 'aspect169'):
34 if config
.get('_tivo_' + tsn
, 'aspect169').lower() == 'true':
39 if tsn
[:3] in BLACKLIST_169
:
45 shares
= [ (section
, dict(config
.items(section
))) for section
in config
.sections() if not(section
.startswith('_tivo_') or section
== 'Server') ]
47 for name
, data
in shares
:
48 if not data
.get('auto_subshares', 'False').lower() == 'true':
51 base_path
= data
['path']
52 for item
in os
.listdir(base_path
):
53 item_path
= os
.path
.join(base_path
, item
)
54 if not os
.path
.isdir(item_path
):
57 new_name
= name
+ '/' + item
59 new_data
['path'] = item_path
61 shares
.append( (new_name
, new_data
) )
68 debug
= config
.get('Server', 'debug')
69 if debug
.lower() == 'true':
78 optres
= config
.get('Server', 'optres')
79 if optres
.lower() == 'true':
86 def get(section
, key
):
87 return config
.get(section
, key
)
89 def getFFMPEGTemplate(tsn
):
90 if tsn
and config
.has_section('_tivo_' + tsn
):
92 return config
.get('_tivo_' + tsn
, 'ffmpeg_prams', raw
= True)
97 return config
.get('Server', 'ffmpeg_prams', raw
= True)
98 except NoOptionError
: #default
99 return '-vcodec mpeg2video -r 29.97 -b %(video_br)s -maxrate %(max_video_br)s -bufsize %(buff_size)s %(aspect_ratio)s -comment pyTivo.py -ac 2 -ab %(audio_br)s -ar 44100 -f vob -'
101 def getValidWidths():
102 return [1920, 1440, 1280, 720, 704, 544, 480, 352]
104 def getValidHeights():
105 return [1080, 720, 480] # Technically 240 is also supported
107 # Return the number in list that is nearest to x
108 # if two values are equidistant, return the larger
109 def nearest(x
, list):
110 return reduce(lambda a
, b
: closest(x
,a
,b
), list)
113 if abs(x
-a
) < abs(x
-b
) or (abs(x
-a
) == abs(x
-b
)and a
>b
):
118 def nearestTivoHeight(height
):
119 return nearest(height
, getValidHeights())
121 def nearestTivoWidth(width
):
122 return nearest(width
, getValidWidths())
124 def getTivoHeight(tsn
):
125 if tsn
and config
.has_section('_tivo_' + tsn
):
127 height
= int(config
.get('_tivo_' + tsn
, 'height'))
128 return nearestTivoHeight(height
)
129 except NoOptionError
:
133 height
= int(config
.get('Server', 'height'))
134 return nearestTivoHeight(height
)
135 except NoOptionError
: #default
138 def getTivoWidth(tsn
):
139 if tsn
and config
.has_section('_tivo_' + tsn
):
141 width
= int(config
.get('_tivo_' + tsn
, 'width'))
142 return nearestTivoWidth(width
)
143 except NoOptionError
:
147 width
= int(config
.get('Server', 'width'))
148 return nearestTivoWidth(width
)
149 except NoOptionError
: #default
152 def getAudioBR(tsn
= None):
153 if tsn
and config
.has_section('_tivo_' + tsn
):
155 return config
.get('_tivo_' + tsn
, 'audio_br')
156 except NoOptionError
:
160 return config
.get('Server', 'audio_br')
161 except NoOptionError
: #default to 192
164 def getVideoBR(tsn
= None):
165 if tsn
and config
.has_section('_tivo_' + tsn
):
167 return config
.get('_tivo_' + tsn
, 'video_br')
168 except NoOptionError
:
172 return config
.get('Server', 'video_br')
173 except NoOptionError
: #default to 4096K
178 return config
.get('Server', 'max_video_br')
179 except NoOptionError
: #default to 17M
184 return config
.get('Server', 'bufsize')
185 except NoOptionError
: #default 1024k