[][src]Struct rusoto_mediaconvert::ProresSettings

pub struct ProresSettings {
    pub codec_profile: Option<String>,
    pub framerate_control: Option<String>,
    pub framerate_conversion_algorithm: Option<String>,
    pub framerate_denominator: Option<i64>,
    pub framerate_numerator: Option<i64>,
    pub interlace_mode: Option<String>,
    pub par_control: Option<String>,
    pub par_denominator: Option<i64>,
    pub par_numerator: Option<i64>,
    pub slow_pal: Option<String>,
    pub telecine: Option<String>,
}

Required when you set (Codec) under (VideoDescription)>(CodecSettings) to the value PRORES.

Fields

codec_profile: Option<String>framerate_control: Option<String>framerate_conversion_algorithm: Option<String>framerate_denominator: Option<i64>

Frame rate denominator.

framerate_numerator: Option<i64>

When you use the API for transcode jobs that use frame rate conversion, specify the frame rate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateNumerator to specify the numerator of this fraction. In this example, use 24000 for the value of FramerateNumerator.

interlace_mode: Option<String>par_control: Option<String>par_denominator: Option<i64>

Pixel Aspect Ratio denominator.

par_numerator: Option<i64>

Pixel Aspect Ratio numerator.

slow_pal: Option<String>telecine: Option<String>

Trait Implementations

impl PartialEq<ProresSettings> for ProresSettings[src]

impl Default for ProresSettings[src]

impl Clone for ProresSettings[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ProresSettings[src]

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

impl Serialize for ProresSettings[src]

Auto Trait Implementations

Blanket Implementations

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> From for T[src]

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

type Error = Infallible

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

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