[][src]Struct rusoto_mediapackage::DashPackage

pub struct DashPackage {
    pub ad_triggers: Option<Vec<String>>,
    pub ads_on_delivery_restrictions: Option<String>,
    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

ad_triggers: Option<Vec<String>>ads_on_delivery_restrictions: Option<String>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 Clone for DashPackage[src]

impl Debug for DashPackage[src]

impl Default for DashPackage[src]

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

impl PartialEq<DashPackage> for DashPackage[src]

impl Serialize for DashPackage[src]

impl StructuralPartialEq for DashPackage[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.