Skip to content

Commit

Permalink
feat(Packager): Use always --use_dovi_supplemental_codecs option (#182)
Browse files Browse the repository at this point in the history
Set to true to signal DolbyVision using the modern supplemental codecs approach instead of the legacy duplicate representations approach
  • Loading branch information
avelad authored Nov 4, 2024
1 parent b087f05 commit db55cc6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions streamer/packager_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,11 @@ def _setup_manifest_format(self) -> List[str]:
'--hls_master_playlist_output',
build_path(self.output_location, self._pipeline_config.hls_output),
]

# Common arguments
args.extend([
'--use_dovi_supplemental_codecs',
])
return args

def _setup_encryption_keys(self) -> List[str]:
Expand Down

0 comments on commit db55cc6

Please sign in to comment.