logo
pub struct ContainerSettings {
    pub cmfc_settings: Option<CmfcSettings>,
    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>,
    pub mpd_settings: Option<MpdSettings>,
    pub mxf_settings: Option<MxfSettings>,
}
Expand description

Container specific settings.

Fields

cmfc_settings: Option<CmfcSettings>

These settings relate to the fragmented MP4 container for the segments in your CMAF outputs.

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>

These settings relate to the MPEG-2 transport stream (MPEG2-TS) container for the MPEG2-TS segments in your HLS outputs.

mov_settings: Option<MovSettings>

These settings relate to your QuickTime MOV output container.

mp_4_settings: Option<Mp4Settings>

These settings relate to your MP4 output container. You can create audio only outputs with this container. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/supported-codecs-containers-audio-only.html#output-codecs-and-containers-supported-for-audio-only.

mpd_settings: Option<MpdSettings>

These settings relate to the fragmented MP4 container for the segments in your DASH outputs.

mxf_settings: Option<MxfSettings>

These settings relate to your MXF output container.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more