mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-14 17:22:56 -07:00
Another fix for Live TV stream transcode decision
This commit is contained in:
parent
833937eced
commit
5073f82d53
1 changed files with 3 additions and 1 deletions
|
@ -1626,7 +1626,9 @@ class PmsConnect(object):
|
|||
}
|
||||
|
||||
# Generate a combined transcode decision value
|
||||
if video_details['stream_video_decision'] == 'transcode' or audio_details['stream_audio_decision'] == 'transcode':
|
||||
if video_details['stream_video_decision'] == 'transcode' or \
|
||||
audio_details['stream_audio_decision'] == 'transcode' or \
|
||||
or transcode_session:
|
||||
transcode_decision = 'transcode'
|
||||
elif video_details['stream_video_decision'] == 'copy' or audio_details['stream_audio_decision'] == 'copy':
|
||||
transcode_decision = 'copy'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue