Skip to content

Commit

Permalink
Write correct codec into VP9 MPEG DAS profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
liberty-developer committed Nov 16, 2018
1 parent a01342d commit 05f0fbe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions resources/lib/MSL.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,10 @@ def __tranform_to_dash(self, manifest):
codec = 'h264'
if 'hevc' in downloadable['contentProfile']:
codec = 'hevc'
elif downloadable['contentProfile'] == 'vp9-profile0-L30-dash-cenc':
codec = 'vp9.0.30'
elif downloadable['contentProfile'] == 'vp9-profile0-L31-dash-cenc':
codec = 'vp9.0.31'

hdcp_versions = '0.0'
for hdcp in downloadable['hdcpVersions']:
Expand Down

0 comments on commit 05f0fbe

Please sign in to comment.