[−][src]Struct rusoto_kinesis_video_archived_media::HLSFragmentSelector
Contains the range of timestamps for the requested media, and the source of the timestamps.
Fields
fragment_selector_type: Option<String>
The source of the timestamps for the requested media.
When FragmentSelectorType
is set to PRODUCER_TIMESTAMP
and GetHLSStreamingSessionURLInput$PlaybackMode is ON_DEMAND
, the first fragment ingested with a producer timestamp within the specified FragmentSelector$TimestampRange is included in the media playlist. In addition, the fragments with producer timestamps within the TimestampRange
ingested immediately following the first fragment (up to the GetHLSStreamingSessionURLInput$MaxMediaPlaylistFragmentResults value) are included.
Fragments that have duplicate producer timestamps are deduplicated. This means that if producers are producing a stream of fragments with producer timestamps that are approximately equal to the true clock time, the HLS media playlists will contain all of the fragments within the requested timestamp range. If some fragments are ingested within the same time range and very different points in time, only the oldest ingested collection of fragments are returned.
When FragmentSelectorType
is set to PRODUCER_TIMESTAMP
and GetHLSStreamingSessionURLInput$PlaybackMode is LIVE
, the producer timestamps are used in the MP4 fragments and for deduplication. But the most recently ingested fragments based on server timestamps are included in the HLS media playlist. This means that even if fragments ingested in the past have producer timestamps with values now, they are not included in the HLS media playlist.
The default is SERVER_TIMESTAMP
.
timestamp_range: Option<HLSTimestampRange>
The start and end of the timestamp range for the requested media.
This value should not be present if PlaybackType
is LIVE
.
Trait Implementations
impl PartialEq<HLSFragmentSelector> for HLSFragmentSelector
[src]
fn eq(&self, other: &HLSFragmentSelector) -> bool
[src]
fn ne(&self, other: &HLSFragmentSelector) -> bool
[src]
impl Default for HLSFragmentSelector
[src]
fn default() -> HLSFragmentSelector
[src]
impl Clone for HLSFragmentSelector
[src]
fn clone(&self) -> HLSFragmentSelector
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for HLSFragmentSelector
[src]
impl Serialize for HLSFragmentSelector
[src]
Auto Trait Implementations
impl Send for HLSFragmentSelector
impl Sync for HLSFragmentSelector
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> Erased for T
impl<T> Same for T
type Output = T
Should always be Self