Skip to content

Commit

Permalink
Does 11.0n support transferring H.264 in transport streams? Let's fin…
Browse files Browse the repository at this point in the history
…d out.
  • Loading branch information
wmcbrine committed Jan 22, 2016
1 parent 1fa51c9 commit 9f8edbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config.py
Expand Up @@ -264,7 +264,8 @@ def has_ts_flag():
return False

def is_ts_capable(tsn): # tsn's of Tivos that support transport streams
return bool(tsn and (tsn[0] >= '7' or tsn.startswith('663')))
return bool(tsn and (tsn[0] >= '7' or
tsn.startswith(('663', '652', '658'))))

def getValidWidths():
return [1920, 1440, 1280, 720, 704, 544, 480, 352]
Expand Down

0 comments on commit 9f8edbe

Please sign in to comment.