[−][src]Struct rusoto_medialive::M3u8Settings
Settings information for the .m3u8 container
Fields
audio_frames_per_pes: Option<i64>
The number of audio frames to insert for each PES packet.
audio_pids: Option<String>
Packet Identifier (PID) of the elementary audio stream(s) in the transport stream. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values.
ecm_pid: Option<String>
This parameter is unused and deprecated.
pat_interval: Option<i64>
The number of milliseconds between instances of this table in the output transport stream. A value of "0" writes out the PMT once per segment file.
pcr_control: Option<String>
When set to pcrEveryPesPacket, a Program Clock Reference value is inserted for every Packetized Elementary Stream (PES) header. This parameter is effective only when the PCR PID is the same as the video or audio elementary stream.
pcr_period: Option<i64>
Maximum time in milliseconds between Program Clock References (PCRs) inserted into the transport stream.
pcr_pid: Option<String>
Packet Identifier (PID) of the Program Clock Reference (PCR) in the transport stream. When no value is given, the encoder will assign the same value as the Video PID. Can be entered as a decimal or hexadecimal value.
pmt_interval: Option<i64>
The number of milliseconds between instances of this table in the output transport stream. A value of "0" writes out the PMT once per segment file.
pmt_pid: Option<String>
Packet Identifier (PID) for the Program Map Table (PMT) in the transport stream. Can be entered as a decimal or hexadecimal value.
program_num: Option<i64>
The value of the program number field in the Program Map Table.
scte_35_behavior: Option<String>
If set to passthrough, passes any SCTE-35 signals from the input source to this output.
scte_35_pid: Option<String>
Packet Identifier (PID) of the SCTE-35 stream in the transport stream. Can be entered as a decimal or hexadecimal value.
timed_metadata_behavior: Option<String>
When set to passthrough, timed metadata is passed through from input to output.
timed_metadata_pid: Option<String>
Packet Identifier (PID) of the timed metadata stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
transport_stream_id: Option<i64>
The value of the transport stream ID field in the Program Map Table.
video_pid: Option<String>
Packet Identifier (PID) of the elementary video stream in the transport stream. Can be entered as a decimal or hexadecimal value.
Trait Implementations
impl PartialEq<M3u8Settings> for M3u8Settings
[src]
fn eq(&self, other: &M3u8Settings) -> bool
[src]
fn ne(&self, other: &M3u8Settings) -> bool
[src]
impl Default for M3u8Settings
[src]
fn default() -> M3u8Settings
[src]
impl Clone for M3u8Settings
[src]
fn clone(&self) -> M3u8Settings
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for M3u8Settings
[src]
impl Serialize for M3u8Settings
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<'de> Deserialize<'de> for M3u8Settings
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for M3u8Settings
impl Sync for M3u8Settings
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