Skip to content

Commit

Permalink
Fix assistive audio streams
Browse files Browse the repository at this point in the history
  • Loading branch information
Uukrull committed Oct 24, 2017
1 parent 29e0b3b commit 0fbe3bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/MSL.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ def __tranform_to_dash(self, manifest):
# Multiple Adaption Set for audio
for audio_track in manifest['audioTracks']:
impaired = 'false'
if audio_track.get('trackType') != 'ASSISTIVE':
if audio_track.get('trackType') == 'ASSISTIVE':
impaired = 'true'
audio_adaption_set = ET.SubElement(
parent=period,
Expand Down

0 comments on commit 0fbe3bb

Please sign in to comment.