Changeset 621f4b1a5a746833579405a62006075e7d3ae306

Show
Ignore:
Timestamp:
01/24/08 17:08:09 (10 months ago)
Author:
wgw <tjm1100@gmail.com>
git-committer:
wgw <tjm1100@gmail.com> 1201216089 -0600
git-parent:

[38ba163c3473da4cf4d54591704b1b58dfdd2f63]

git-author:
wgw <tjm1100@gmail.com> 1201216089 -0600
Message:

Set default video bitrate for HD Tivo's

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • config.py

    r38ba163 r621f4b1  
    186186    try: 
    187187        return config.get('Server', 'video_br') 
    188     except NoOptionError: #default to 4096K 
    189         return '4096K' 
     188    except NoOptionError: #defaults for S3/S2 TiVo 
     189        if tsn and tsn[:3] in getHDtivos(): 
     190            return '8192k' 
     191        else: 
     192            return '4096K' 
    190193 
    191194def getMaxVideoBR():