11 from ConfigParser
import NoOptionError
13 guid
= ''.join([random
.choice(string
.letters
) for i
in range(10)])
15 config
= ConfigParser
.ConfigParser()
17 p
= os
.path
.dirname(__file__
)
18 config_files
= ['/etc/pyTivo.conf', os
.path
.join(p
, 'pyTivo.conf')]
31 opts
, _
= getopt
.getopt(argv
, 'c:e:', ['config=', 'extraconf='])
32 except getopt
.GetoptError
, msg
:
35 for opt
, value
in opts
:
36 if opt
in ('-c', '--config'):
37 config_files
= [value
]
38 elif opt
in ('-e', '--extraconf'):
39 config_files
.append(value
)
41 configs_found
= config
.read(config_files
)
43 print ('ERROR: pyTivo.conf does not exist.\n' +
44 'You must create this file before running pyTivo.')
47 for section
in config
.sections():
48 if section
.startswith('_tivo_'):
50 if tsn
.upper() not in ['SD', 'HD']:
51 if config
.has_option(section
, 'name'):
52 tivo_names
[tsn
] = config
.get(section
, 'name')
58 newconfig
= ConfigParser
.ConfigParser()
59 newconfig
.read(config_files
)
63 f
= open(configs_found
[-1], 'w')
67 def get_server(name
, default
=None):
68 if config
.has_option('Server', name
):
69 return config
.get('Server', name
)
79 s
= socket
.socket(socket
.AF_INET
, socket
.SOCK_DGRAM
)
80 s
.connect(('4.2.2.1', 123))
81 our_ip
= s
.getsockname()[0]
85 opt
= get_server('zeroconf', 'auto').lower()
88 for section
in config
.sections():
89 if section
.startswith('_tivo_'):
90 if config
.has_option(section
, 'shares'):
91 logger
= logging
.getLogger('pyTivo.config')
92 logger
.info('Shares security in use -- zeroconf disabled')
94 elif opt
in ['false', 'no', 'off']:
99 def getBeaconAddresses():
100 return get_server('beacon', '255.255.255.255')
103 return get_server('port', '9032')
105 def get169Blacklist(tsn
): # tivo does not pad 16:9 video
106 return tsn
and not isHDtivo(tsn
) and not get169Letterbox(tsn
)
107 # verified Blacklist Tivo's are ('130', '240', '540')
108 # It is assumed all remaining non-HD and non-Letterbox tivos are Blacklist
110 def get169Letterbox(tsn
): # tivo pads 16:9 video for 4:3 display
111 return tsn
and tsn
[:3] in ['649']
113 def get169Setting(tsn
):
117 tsnsect
= '_tivo_' + tsn
118 if config
.has_section(tsnsect
):
119 if config
.has_option(tsnsect
, 'aspect169'):
121 return config
.getboolean(tsnsect
, 'aspect169')
125 if get169Blacklist(tsn
) or get169Letterbox(tsn
):
130 def getAllowedClients():
131 return get_server('allowedips', '').split()
133 def getIsExternal(tsn
):
134 tsnsect
= '_tivo_' + tsn
135 if tsnsect
in config
.sections():
136 if config
.has_option(tsnsect
, 'external'):
138 return config
.getboolean(tsnsect
, 'external')
144 def isTsnInConfig(tsn
):
145 return ('_tivo_' + tsn
) in config
.sections()
147 def getShares(tsn
=''):
148 shares
= [(section
, dict(config
.items(section
)))
149 for section
in config
.sections()
150 if not (section
.startswith('_tivo_')
151 or section
.startswith('logger_')
152 or section
.startswith('handler_')
153 or section
.startswith('formatter_')
154 or section
in ('Server', 'loggers', 'handlers',
159 tsnsect
= '_tivo_' + tsn
160 if config
.has_section(tsnsect
) and config
.has_option(tsnsect
, 'shares'):
161 # clean up leading and trailing spaces & make sure ref is valid
163 for x
in config
.get(tsnsect
, 'shares').split(','):
165 if config
.has_section(y
):
166 tsnshares
.append((y
, dict(config
.items(y
))))
174 return config
.getboolean('Server', 'debug')
175 except NoOptionError
, ValueError:
178 def getOptres(tsn
=None):
179 if tsn
and config
.has_section('_tivo_' + tsn
):
181 return config
.getboolean('_tivo_' + tsn
, 'optres')
182 except NoOptionError
, ValueError:
184 section_name
= get_section(tsn
)
185 if config
.has_section(section_name
):
187 return config
.getboolean(section_name
, 'optres')
188 except NoOptionError
, ValueError:
191 return config
.getboolean('Server', 'optres')
192 except NoOptionError
, ValueError:
196 if config
.has_option('Server', 'par'):
198 return (True, config
.getfloat('Server', 'par'))[ref
]
199 except NoOptionError
, ValueError:
201 return (False, 1.0)[ref
]
204 if config
.has_option('Server', fname
):
205 return config
.get('Server', fname
)
208 if fname
in bin_paths
:
209 return bin_paths
[fname
]
210 if sys
.platform
== 'win32':
212 for path
in ([os
.path
.join(os
.path
.dirname(__file__
), 'bin')] +
213 os
.getenv('PATH').split(os
.pathsep
)):
214 fpath
= os
.path
.join(path
, fname
)
215 if os
.path
.exists(fpath
) and os
.path
.isfile(fpath
):
216 bin_paths
[fname
] = fpath
221 if config
.has_option('Server', 'ffmpeg_wait'):
222 return max(int(float(config
.get('Server', 'ffmpeg_wait'))), 1)
226 def getFFmpegTemplate(tsn
):
227 tmpl
= get_tsn('ffmpeg_tmpl', tsn
, True)
230 return '%(video_codec)s %(video_fps)s %(video_br)s %(max_video_br)s \
231 %(buff_size)s %(aspect_ratio)s %(audio_br)s \
232 %(audio_fr)s %(audio_ch)s %(audio_codec)s %(audio_lang)s \
233 %(ffmpeg_pram)s %(format)s'
235 def getFFmpegPrams(tsn
):
236 return get_tsn('ffmpeg_pram', tsn
, True)
238 def isHDtivo(tsn
): # tsn's of High Definition Tivo's
239 return bool(tsn
and tsn
[:3] in ['648', '652', '658', '663'])
241 def getValidWidths():
242 return [1920, 1440, 1280, 720, 704, 544, 480, 352]
244 def getValidHeights():
245 return [1080, 720, 480] # Technically 240 is also supported
247 # Return the number in list that is nearest to x
248 # if two values are equidistant, return the larger
249 def nearest(x
, list):
250 return reduce(lambda a
, b
: closest(x
, a
, b
), list)
252 def closest(x
, a
, b
):
255 if da
< db
or (da
== db
and a
> b
):
260 def nearestTivoHeight(height
):
261 return nearest(height
, getValidHeights())
263 def nearestTivoWidth(width
):
264 return nearest(width
, getValidWidths())
266 def getTivoHeight(tsn
):
267 height
= get_tsn('height', tsn
)
269 return nearestTivoHeight(int(height
))
270 return [480, 1080][isHDtivo(tsn
)]
272 def getTivoWidth(tsn
):
273 width
= get_tsn('width', tsn
)
275 return nearestTivoWidth(int(width
))
276 return [544, 1920][isHDtivo(tsn
)]
279 return max(int(strtod(i
)) / 64000, 1) * 64
281 def getAudioBR(tsn
=None):
282 rate
= get_tsn('audio_br', tsn
)
285 # convert to non-zero multiple of 64 to ensure ffmpeg compatibility
286 # compare audio_br to max_audio_br and return lowest
287 return str(min(_trunc64(rate
), getMaxAudioBR(tsn
))) + 'k'
290 return str(int(strtod(i
)) / 1000) + 'k'
292 def getVideoBR(tsn
=None):
293 rate
= get_tsn('video_br', tsn
)
296 return ['4096K', '16384K'][isHDtivo(tsn
)]
298 def getMaxVideoBR(tsn
=None):
299 rate
= get_tsn('max_video_br', tsn
)
304 def getVideoPCT(tsn
=None):
305 pct
= get_tsn('video_pct', tsn
)
310 def getBuffSize(tsn
=None):
311 size
= get_tsn('bufsize', tsn
)
314 return ['1024k', '4096k'][isHDtivo(tsn
)]
316 def getMaxAudioBR(tsn
=None):
317 rate
= get_tsn('max_audio_br', tsn
)
318 # convert to non-zero multiple of 64 for ffmpeg compatibility
320 return _trunc64(rate
)
323 def get_section(tsn
):
324 return ['_tivo_SD', '_tivo_HD'][isHDtivo(tsn
)]
326 def get_tsn(name
, tsn
=None, raw
=False):
327 if tsn
and config
.has_section('_tivo_' + tsn
):
329 return config
.get('_tivo_' + tsn
, name
, raw
)
330 except NoOptionError
:
332 section_name
= get_section(tsn
)
333 if config
.has_section(section_name
):
335 return config
.get(section_name
, name
, raw
)
336 except NoOptionError
:
339 return config
.get('Server', name
, raw
)
340 except NoOptionError
:
344 # Parse a bitrate using the SI/IEEE suffix values as if by ffmpeg
345 # For example, 2K==2000, 2Ki==2048, 2MB==16000000, 2MiB==16777216
346 # Algorithm: http://svn.mplayerhq.hu/ffmpeg/trunk/libavcodec/eval.c
348 prefixes
= {'y': -24, 'z': -21, 'a': -18, 'f': -15, 'p': -12,
349 'n': -9, 'u': -6, 'm': -3, 'c': -2, 'd': -1,
350 'h': 2, 'k': 3, 'K': 3, 'M': 6, 'G': 9,
351 'T': 12, 'P': 15, 'E': 18, 'Z': 21, 'Y': 24}
352 p
= re
.compile(r
'^(\d+)(?:([yzafpnumcdhkKMGTPEZY])(i)?)?([Bb])?$')
355 raise SyntaxError('Invalid bit value syntax')
356 (coef
, prefix
, power
, byte
) = m
.groups()
360 exponent
= float(prefixes
[prefix
])
363 value
= float(coef
) * pow(2.0, exponent
/ 0.3)
366 value
= float(coef
) * pow(10.0, exponent
)
367 if byte
== 'B': # B == Byte, b == bit
372 if (config
.has_section('loggers') and
373 config
.has_section('handlers') and
374 config
.has_section('formatters')):
376 logging
.config
.fileConfig(config_files
)
379 logging
.basicConfig(level
=logging
.DEBUG
)
381 logging
.basicConfig(level
=logging
.INFO
)