[][src]Struct rusoto_mediaconvert::M3u8Settings

pub struct M3u8Settings {
    pub audio_frames_per_pes: Option<i64>,
    pub audio_pids: Option<Vec<i64>>,
    pub nielsen_id_3: Option<String>,
    pub pat_interval: Option<i64>,
    pub pcr_control: Option<String>,
    pub pcr_pid: Option<i64>,
    pub pmt_interval: Option<i64>,
    pub pmt_pid: Option<i64>,
    pub private_metadata_pid: Option<i64>,
    pub program_number: Option<i64>,
    pub scte_35_pid: Option<i64>,
    pub scte_35_source: Option<String>,
    pub timed_metadata: Option<String>,
    pub timed_metadata_pid: Option<i64>,
    pub transport_stream_id: Option<i64>,
    pub video_pid: Option<i64>,
}

Settings for TS segments in HLS

Fields

audio_frames_per_pes: Option<i64>

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

audio_pids: Option<Vec<i64>>

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.

nielsen_id_3: Option<String>

If INSERT, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.

pat_interval: Option<i64>

The number of milliseconds between instances of this table in the output transport stream.

pcr_control: Option<String>

When set to PCREVERYPES_PACKET 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_pid: Option<i64>

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.

pmt_interval: Option<i64>

The number of milliseconds between instances of this table in the output transport stream.

pmt_pid: Option<i64>

Packet Identifier (PID) for the Program Map Table (PMT) in the transport stream.

private_metadata_pid: Option<i64>

Packet Identifier (PID) of the private metadata stream in the transport stream.

program_number: Option<i64>

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

scte_35_pid: Option<i64>

Packet Identifier (PID) of the SCTE-35 stream in the transport stream.

scte_35_source: Option<String>

Enables SCTE-35 passthrough (scte35Source) to pass any SCTE-35 signals from input to output.

timed_metadata: Option<String>

Applies only to HLS outputs. Use this setting to specify whether the service inserts the ID3 timed metadata from the input in this output.

timed_metadata_pid: Option<i64>

Packet Identifier (PID) of the timed metadata stream in the transport stream.

transport_stream_id: Option<i64>

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

video_pid: Option<i64>

Packet Identifier (PID) of the elementary video stream in the transport stream.

Trait Implementations

impl PartialEq<M3u8Settings> for M3u8Settings[src]

impl Default for M3u8Settings[src]

impl Clone for 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]

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

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]

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

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

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

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

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self