Changeset 94ce5271ef5d1d4128ff27efe58add9a8c355b21

Show
Ignore:
Timestamp:
03/15/08 13:18:37 (10 months ago)
Author:
wgw <tjm1100@gmail.com>
git-committer:
wgw <tjm1100@gmail.com> 1205605117 -0500
git-parent:

[2caa28c54247d443c336e3d70d8019190e674b0e]

git-author:
wgw <tjm1100@gmail.com> 1205605117 -0500
Message:

.mpv not tivo compatible

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/video/transcode.py

    r2caa28c r94ce527  
    291291        return False 
    292292 
    293     if (inFile[-3:]).lower() == '.ts': 
    294         debug_write(__name__, fn_attr(), ['FALSE, transport stream not supported.', inFile]) 
     293    if os.path.splitext(inFile)[-1].lower() in ('.ts', '.mpv'): 
     294        debug_write(__name__, fn_attr(), ['FALSE, ext', os.path.splitext(inFile)[-1],\ 
     295                'not tivo compatible.', inFile]) 
    295296        return False 
    296297