[][src]Struct rusoto_mediapackage::DashPackage

pub struct DashPackage {
    pub encryption: Option<DashEncryption>,
    pub manifest_layout: Option<String>,
    pub manifest_window_seconds: Option<i64>,
    pub min_buffer_time_seconds: Option<i64>,
    pub min_update_period_seconds: Option<i64>,
    pub period_triggers: Option<Vec<String>>,
    pub profile: Option<String>,
    pub segment_duration_seconds: Option<i64>,
    pub segment_template_format: Option<String>,
    pub stream_selection: Option<StreamSelection>,
    pub suggested_presentation_delay_seconds: Option<i64>,
}

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

Fields

encryption: Option<DashEncryption>manifest_layout: Option<String>

Determines the position of some tags in the Media Presentation Description (MPD). When set to FULL, elements like SegmentTemplate and ContentProtection are included in each Representation. When set to COMPACT, duplicate elements are combined and presented at the AdaptationSet level.

manifest_window_seconds: Option<i64>

Time window (in seconds) contained in each manifest.

min_buffer_time_seconds: Option<i64>

Minimum duration (in seconds) that a player will buffer media before starting the presentation.

min_update_period_seconds: Option<i64>

Minimum duration (in seconds) between potential changes to the Dynamic Adaptive Streaming over HTTP (DASH) Media Presentation Description (MPD).

period_triggers: Option<Vec<String>>

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 Channel source contains SCTE-35 ad markers.

profile: Option<String>

The Dynamic Adaptive Streaming over HTTP (DASH) profile type. When set to "HBBTV15", HbbTV 1.5 compliant output is enabled.

segment_duration_seconds: Option<i64>

Duration (in seconds) of each segment. Actual segments will be rounded to the nearest multiple of the source segment duration.

segment_template_format: Option<String>

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

stream_selection: Option<StreamSelection>suggested_presentation_delay_seconds: Option<i64>

Duration (in seconds) to delay live content before presentation.

Trait Implementations

impl PartialEq<DashPackage> for DashPackage[src]

impl Default for DashPackage[src]

impl Clone for DashPackage[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DashPackage[src]

impl Serialize for DashPackage[src]

impl<'de> Deserialize<'de> for DashPackage[src]

Auto Trait Implementations

impl Send for DashPackage

impl Sync for DashPackage

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self