[][src]Struct rusoto_medialive::M3u8Settings

pub struct M3u8Settings {
    pub audio_frames_per_pes: Option<i64>,
    pub audio_pids: Option<String>,
    pub ecm_pid: Option<String>,
    pub pat_interval: Option<i64>,
    pub pcr_control: Option<String>,
    pub pcr_period: Option<i64>,
    pub pcr_pid: Option<String>,
    pub pmt_interval: Option<i64>,
    pub pmt_pid: Option<String>,
    pub program_num: Option<i64>,
    pub scte_35_behavior: Option<String>,
    pub scte_35_pid: Option<String>,
    pub timed_metadata_behavior: Option<String>,
    pub timed_metadata_pid: Option<String>,
    pub transport_stream_id: Option<i64>,
    pub video_pid: Option<String>,
}

Settings information for the .m3u8 container

Fields

The number of audio frames to insert for each PES packet.

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.

This parameter is unused and deprecated.

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.

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.

Maximum time in milliseconds between Program Clock References (PCRs) inserted into the transport stream.

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.

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.

Packet Identifier (PID) for the Program Map Table (PMT) in the transport stream. Can be entered as a decimal or hexadecimal value.

The value of the program number field in the Program Map Table.

If set to passthrough, passes any SCTE-35 signals from the input source to this output.

Packet Identifier (PID) of the SCTE-35 stream in the transport stream. Can be entered as a decimal or hexadecimal value.

When set to passthrough, timed metadata is passed through from input to output.

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).

The value of the transport stream ID field in the Program Map Table.

Packet Identifier (PID) of the elementary video stream in the transport stream. Can be entered as a decimal or hexadecimal value.

Trait Implementations

impl Clone for M3u8Settings
[src]

Performs copy-assignment from source. Read more

impl Default for M3u8Settings
[src]

impl PartialEq<M3u8Settings> for M3u8Settings
[src]

impl Debug for M3u8Settings
[src]

impl Serialize for M3u8Settings
[src]

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

Auto Trait Implementations

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]

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

🔬 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, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T