pyTivo is both an HMO and GoBack server. Similar to TiVo Desktop pyTivo loads many standard video compression codecs and outputs mpeg2 video to the TiVo. However, pyTivo is able to load MANY more file types than TiVo Desktop.
if ((int(vInfo['vHeight']) >= 720 and
config.getTivoHeight >= 720) or
(int(vInfo['vWidth']) >= 1280 and
config.getTivoWidth >= 1280)):
data['showingBits'] = '4096'
I believe getTivoHeight and getTivoWidth should be function calls like so:
if ((int(vInfo['vHeight']) >= 720 and
config.getTivoHeight(tsn) >= 720) or
(int(vInfo['vWidth']) >= 1280 and
config.getTivoWidth(tsn) >= 1280)):
data['showingBits'] = '4096'
Lines 216-220:
I believe
getTivoHeight
andgetTivoWidth
should be function calls like so: