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_file
= os
.path
.join(p
, 'pyTivo.conf')
10 config
.read(config_file
)
15 config
= ConfigParser
.ConfigParser()
16 config
.read(config_file
)
19 if config
.has_option('Server', 'GUID'):
20 guid
= config
.get('Server', 'GUID')
25 def getBeaconAddresses():
26 if config
.has_option('Server', 'beacon'):
27 beacon_ips
= config
.get('Server', 'beacon')
29 beacon_ips
= '255.255.255.255'
33 return config
.get('Server', 'Port')
35 def get169Setting(tsn
):
39 if config
.has_section('_tivo_' + tsn
):
40 if config
.has_option('_tivo_' + tsn
, 'aspect169'):
42 return config
.getboolean('_tivo_' + tsn
, 'aspect169')
46 if tsn
[:3] in BLACKLIST_169
:
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
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
)))]
67 for name
, data
in shares
:
68 if not data
.get('auto_subshares', 'False').lower() == 'true':
71 base_path
= data
['path']
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
):
78 new_name
= name
+ '/' + item
80 new_data
['path'] = item_path
82 shares
.append((new_name
, new_data
))
89 if config
.has_option('Server', 'debug'):
91 return str2tuple(config
.get('Server', 'debug')+',,')[ref
]
94 return str2tuple('False,,')[ref
]
98 debug
= config
.get('Server', 'hack83')
99 if debug
.lower() == 'true':
103 except NoOptionError
:
108 return config
.getboolean('Server', 'optres')
109 except NoOptionError
, ValueError:
112 def get(section
, key
):
113 return config
.get(section
, key
)
115 def getFFmpegTemplate(tsn
):
116 if tsn
and config
.has_section('_tivo_' + tsn
):
118 return config
.get('_tivo_' + tsn
, 'ffmpeg_tmpl', raw
=True)
119 except NoOptionError
:
122 return config
.get('Server', 'ffmpeg_tmpl', raw
=True)
123 except NoOptionError
: #default
124 return '%(video_codec)s %(video_fps)s %(video_br)s %(max_video_br)s \
125 %(buff_size)s %(aspect_ratio)s -comment pyTivo.py %(audio_br)s \
126 %(audio_fr)s %(audio_ch)s %(audio_codec)s %(ffmpeg_pram)s %(format)s'
128 def getFFmpegPrams(tsn
):
129 if tsn
and config
.has_section('_tivo_' + tsn
):
131 return config
.get('_tivo_' + tsn
, 'ffmpeg_pram', raw
=True)
132 except NoOptionError
:
135 return config
.get('Server', 'ffmpeg_pram', raw
=True)
136 except NoOptionError
:
139 def isHDtivo(tsn
): # tsn's of High Definition Tivo's
140 return tsn
!= '' and tsn
[:3] in ['648', '652']
142 def getValidWidths():
143 return [1920, 1440, 1280, 720, 704, 544, 480, 352]
145 def getValidHeights():
146 return [1080, 720, 480] # Technically 240 is also supported
148 # Return the number in list that is nearest to x
149 # if two values are equidistant, return the larger
150 def nearest(x
, list):
151 return reduce(lambda a
, b
: closest(x
, a
, b
), list)
153 def closest(x
, a
, b
):
154 if abs(x
- a
) < abs(x
- b
) or (abs(x
- a
) == abs(x
- b
) and a
> b
):
159 def nearestTivoHeight(height
):
160 return nearest(height
, getValidHeights())
162 def nearestTivoWidth(width
):
163 return nearest(width
, getValidWidths())
165 def getTivoHeight(tsn
):
166 if tsn
and config
.has_section('_tivo_' + tsn
):
168 height
= config
.getint('_tivo_' + tsn
, 'height')
169 return nearestTivoHeight(height
)
170 except NoOptionError
:
173 height
= config
.getint('Server', 'height')
174 return nearestTivoHeight(height
)
175 except NoOptionError
: #defaults for S3/S2 TiVo
181 def getTivoWidth(tsn
):
182 if tsn
and config
.has_section('_tivo_' + tsn
):
184 width
= config
.getint('_tivo_' + tsn
, 'width')
185 return nearestTivoWidth(width
)
186 except NoOptionError
:
189 width
= config
.getint('Server', 'width')
190 return nearestTivoWidth(width
)
191 except NoOptionError
: #defaults for S3/S2 TiVo
197 def getAudioBR(tsn
= None):
198 #convert to non-zero multiple of 64 to ensure ffmpeg compatibility
199 #compare audio_br to max_audio_br and return lowest
200 if tsn
and config
.has_section('_tivo_' + tsn
):
202 audiobr
= int(max(int(strtod(config
.get('_tivo_' + tsn
, 'audio_br'))/1000), 64)/64)*64
203 return str(min(audiobr
, getMaxAudioBR(tsn
))) + 'k'
204 except NoOptionError
:
207 audiobr
= int(max(int(strtod(config
.get('Server', 'audio_br'))/1000), 64)/64)*64
208 return str(min(audiobr
, getMaxAudioBR(tsn
))) + 'k'
209 except NoOptionError
: #defaults for S3/S2 TiVo
215 def getVideoBR(tsn
= None):
216 if tsn
and config
.has_section('_tivo_' + tsn
):
218 return config
.get('_tivo_' + tsn
, 'video_br')
219 except NoOptionError
:
222 return config
.get('Server', 'video_br')
223 except NoOptionError
: #defaults for S3/S2 TiVo
231 return str(int(strtod(config
.get('Server', 'max_video_br'))/1000)) + 'k'
232 except NoOptionError
: #default to 17Mi
237 return str(int(strtod(config
.get('Server', 'bufsize'))))
238 except NoOptionError
: #default 1024k
241 def getMaxAudioBR(tsn
= None):
242 #convert to non-zero multiple of 64 for ffmpeg compatibility
243 if tsn
and config
.has_section('_tivo_' + tsn
):
245 return int(int(strtod(config
.get('_tivo_' + tsn
, 'max_audio_br'))/1000)/64)*64
246 except NoOptionError
:
249 return int(int(strtod(config
.get('Server', 'max_audio_br'))/1000)/64)*64
250 except NoOptionError
:
251 return int(448) #default to 448
253 def getAudioCodec(tsn
= None):
254 if tsn
and config
.has_section('_tivo_' + tsn
):
256 return config
.get('_tivo_' + tsn
, 'audio_codec')
257 except NoOptionError
:
260 return config
.get('Server', 'audio_codec')
261 except NoOptionError
:
264 def getAudioCH(tsn
= None):
265 if tsn
and config
.has_section('_tivo_' + tsn
):
267 return config
.get('_tivo_' + tsn
, 'audio_ch')
268 except NoOptionError
:
271 return config
.get('Server', 'audio_ch')
272 except NoOptionError
:
275 def getAudioFR(tsn
= None):
276 if tsn
and config
.has_section('_tivo_' + tsn
):
278 return config
.get('_tivo_' + tsn
, 'audio_fr')
279 except NoOptionError
:
282 return config
.get('Server', 'audio_fr')
283 except NoOptionError
:
286 def getVideoFPS(tsn
= None):
287 if tsn
and config
.has_section('_tivo_' + tsn
):
289 return config
.get('_tivo_' + tsn
, 'video_fps')
290 except NoOptionError
:
293 return config
.get('Server', 'video_fps')
294 except NoOptionError
:
297 def getVideoCodec(tsn
= None):
298 if tsn
and config
.has_section('_tivo_' + tsn
):
300 return config
.get('_tivo_' + tsn
, 'video_codec')
301 except NoOptionError
:
304 return config
.get('Server', 'video_codec')
305 except NoOptionError
:
308 def getFormat(tsn
= None):
309 if tsn
and config
.has_section('_tivo_' + tsn
):
311 return config
.get('_tivo_' + tsn
, 'force_format')
312 except NoOptionError
:
315 return config
.get('Server', 'force_format')
316 except NoOptionError
:
321 L
= [x
.strip() for x
in items
]
324 # Parse a bitrate using the SI/IEEE suffix values as if by ffmpeg
325 # For example, 2K==2000, 2Ki==2048, 2MB==16000000, 2MiB==16777216
326 # Algorithm: http://svn.mplayerhq.hu/ffmpeg/trunk/libavcodec/eval.c
328 prefixes
= {'y': -24, 'z': -21, 'a': -18, 'f': -15, 'p': -12,
329 'n': -9, 'u': -6, 'm': -3, 'c': -2, 'd': -1,
330 'h': 2, 'k': 3, 'K': 3, 'M': 6, 'G': 9,
331 'T': 12, 'P': 15, 'E': 18, 'Z': 21, 'Y': 24}
332 p
= re
.compile(r
'^(\d+)(?:([yzafpnumcdhkKMGTPEZY])(i)?)?([Bb])?$')
335 raise SyntaxError('Invalid bit value syntax')
336 (coef
, prefix
, power
, byte
) = m
.groups()
340 exponent
= float(prefixes
[prefix
])
343 value
= float(coef
) * pow(2.0, exponent
/ 0.3)
346 value
= float(coef
) * pow(10.0, exponent
)
347 if byte
== 'B': # B == Byte, b == bit