[−][src]Struct rusoto_mediapackage::DashPackage
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]
fn eq(&self, other: &DashPackage) -> bool
[src]
fn ne(&self, other: &DashPackage) -> bool
[src]
impl Default for DashPackage
[src]
fn default() -> DashPackage
[src]
impl Clone for DashPackage
[src]
fn clone(&self) -> 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]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<'de> Deserialize<'de> for DashPackage
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self