Skip to content

Commit

Permalink
enable Transcoding "Uno4K SE"
Browse files Browse the repository at this point in the history
  • Loading branch information
atvcaptain committed Nov 21, 2017
1 parent 9f71c0e commit b6cc10c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugin/controllers/models/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ def getInfo(session = None, need_fullinfo = False):
info['transcoding'] = False
#: models transcoding feature
TC_MODELS = (
"Uno4K", "Ultimo4K", "Solo4K", "Solo²", "Duo²", "Solo SE",
"Uno4K", "Uno4K SE", "Ultimo4K", "Solo4K", "Solo²", "Duo²", "Solo SE",
"Quad", "Quad Plus"
)

Expand Down
4 changes: 2 additions & 2 deletions plugin/controllers/models/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def getStream(session, request, m3ufile):
machinebuild = info["machinebuild"]
transcoder_port = None
args = ""
if model in ("Uno4K", "Ultimo4K", "Solo4K", "Solo²", "Duo²", "Solo SE", "Quad", "Quad Plus") or machinebuild in ('dags7356', 'dags7252', 'gb7252', 'gb7356'):
if model in ("Uno4K", "Uno4K SE", "Ultimo4K", "Solo4K", "Solo²", "Duo²", "Solo SE", "Quad", "Quad Plus") or machinebuild in ('dags7356', 'dags7252', 'gb7252', 'gb7356'):
try:
transcoder_port = int(config.plugins.transcodingsetup.port.value)
except StandardError:
Expand Down Expand Up @@ -154,7 +154,7 @@ def getTS(self, request):
machinebuild = info["machinebuild"]
transcoder_port = None
args = ""
if model in ("Uno4K", "Ultimo4K", "Solo4K", "Solo²", "Duo²", "Solo SE", "Quad", "Quad Plus") or machinebuild in ('gb7252', 'gb7356'):
if model in ("Uno4K", "Uno4K SE", "Ultimo4K", "Solo4K", "Solo²", "Duo²", "Solo SE", "Quad", "Quad Plus") or machinebuild in ('gb7252', 'gb7356'):
try:
transcoder_port = int(config.plugins.transcodingsetup.port.value)
except StandardError:
Expand Down

0 comments on commit b6cc10c

Please sign in to comment.