[][src]Struct rusoto_mediaconvert::ContainerSettings

pub struct ContainerSettings {
    pub container: Option<String>,
    pub f_4v_settings: Option<F4vSettings>,
    pub m_2ts_settings: Option<M2tsSettings>,
    pub m_3u_8_settings: Option<M3u8Settings>,
    pub mov_settings: Option<MovSettings>,
    pub mp_4_settings: Option<Mp4Settings>,
}

Container specific settings.

Fields

container: Option<String>

Container for this output. Some containers require a container settings object. If not specified, the default object will be created.

f_4v_settings: Option<F4vSettings>

Settings for F4v container

m_2ts_settings: Option<M2tsSettings>

MPEG-2 TS container settings. These apply to outputs in a File output group when the output's container (ContainerType) is MPEG-2 Transport Stream (M2TS). In these assets, data is organized by the program map table (PMT). Each transport stream program contains subsets of data, including audio, video, and metadata. Each of these subsets of data has a numerical label called a packet identifier (PID). Each transport stream program corresponds to one MediaConvert output. The PMT lists the types of data in a program along with their PID. Downstream systems and players use the program map table to look up the PID for each type of data it accesses and then uses the PIDs to locate specific data within the asset.

m_3u_8_settings: Option<M3u8Settings>

Settings for TS segments in HLS

mov_settings: Option<MovSettings>

Settings for MOV Container.

mp_4_settings: Option<Mp4Settings>

Settings for MP4 container. You can create audio-only AAC outputs with this container.

Trait Implementations

impl Clone for ContainerSettings[src]

impl Default for ContainerSettings[src]

impl PartialEq<ContainerSettings> for ContainerSettings[src]

impl Debug for ContainerSettings[src]

impl Serialize for ContainerSettings[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

impl<T> BorrowMut<T> 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<T> for T

type Output = T

Should always be Self