PackagingConfigurationDashPackage

data class PackagingConfigurationDashPackage(val dashManifests: List<PackagingConfigurationDashManifest>, val encryption: PackagingConfigurationDashEncryption? = null, val includeEncoderConfigurationInSegments: Boolean? = null, val includeIframeOnlyStream: Boolean? = null, val periodTriggers: List<PackagingConfigurationDashPackagePeriodTriggersItem>? = null, val segmentDurationSeconds: Int? = null, val segmentTemplateFormat: PackagingConfigurationDashPackageSegmentTemplateFormat? = null)

A Dynamic Adaptive Streaming over HTTP (DASH) packaging configuration.

Constructors

Link copied to clipboard
constructor(dashManifests: List<PackagingConfigurationDashManifest>, encryption: PackagingConfigurationDashEncryption? = null, includeEncoderConfigurationInSegments: Boolean? = null, includeIframeOnlyStream: Boolean? = null, periodTriggers: List<PackagingConfigurationDashPackagePeriodTriggersItem>? = null, segmentDurationSeconds: Int? = null, segmentTemplateFormat: PackagingConfigurationDashPackageSegmentTemplateFormat? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A list of DASH manifest configurations.

Link copied to clipboard

Parameters for encrypting content.

Link copied to clipboard

When includeEncoderConfigurationInSegments is set to true, MediaPackage places your encoder's Sequence Parameter Set (SPS), Picture Parameter Set (PPS), and Video Parameter Set (VPS) metadata in every video segment instead of in the init fragment. This lets you use different SPS/PPS/VPS settings for your assets during content playback.

Link copied to clipboard

When enabled, an I-Frame only stream will be included in the output.

Link copied to clipboard

A list of triggers that controls when the outgoing Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD) will be partitioned into multiple periods. If empty, the content will not be partitioned into more than one period. If the list contains "ADS", new periods will be created where the Asset contains SCTE-35 ad markers.

Link copied to clipboard

Duration (in seconds) of each fragment. Actual fragments are rounded to the nearest multiple of the source segment duration.

Link copied to clipboard

Determines the type of SegmentTemplate included in the Media Presentation Description (MPD). When set to NUMBER_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Number$ media URLs. When set to TIME_WITH_TIMELINE, a full timeline is presented in each SegmentTemplate, with $Time$ media URLs. When set to NUMBER_WITH_DURATION, only a duration is included in each SegmentTemplate, with $Number$ media URLs.