[][src]Struct rusoto_mediaconvert::Mp4Settings

pub struct Mp4Settings {
    pub cslg_atom: Option<String>,
    pub ctts_version: Option<i64>,
    pub free_space_box: Option<String>,
    pub moov_placement: Option<String>,
    pub mp_4_major_brand: Option<String>,
}

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

Fields

cslg_atom: Option<String>

When enabled, file composition times will start at zero, composition times in the 'ctts' (composition time to sample) box for B-frames will be negative, and a 'cslg' (composition shift least greatest) box will be included per 14496-1 amendment 1. This improves compatibility with Apple players and tools.

ctts_version: Option<i64>

Ignore this setting unless compliance to the CTTS box version specification matters in your workflow. Specify a value of 1 to set your CTTS box version to 1 and make your output compliant with the specification. When you specify a value of 1, you must also set CSLG atom (cslgAtom) to the value INCLUDE. Keep the default value 0 to set your CTTS box version to 0. This can provide backward compatibility for some players and packagers.

free_space_box: Option<String>

Inserts a free-space box immediately after the moov box.

moov_placement: Option<String>

If set to PROGRESSIVE_DOWNLOAD, the MOOV atom is relocated to the beginning of the archive as required for progressive downloading. Otherwise it is placed normally at the end.

mp_4_major_brand: Option<String>

Overrides the "Major Brand" field in the output file. Usually not necessary to specify.

Trait Implementations

impl Clone for Mp4Settings[src]

impl Debug for Mp4Settings[src]

impl Default for Mp4Settings[src]

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

impl PartialEq<Mp4Settings> for Mp4Settings[src]

impl Serialize for Mp4Settings[src]

impl StructuralPartialEq for Mp4Settings[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.