[][src]Struct rusoto_mediaconvert::Mpeg2Settings

pub struct Mpeg2Settings {
    pub adaptive_quantization: Option<String>,
    pub bitrate: Option<i64>,
    pub codec_level: Option<String>,
    pub codec_profile: Option<String>,
    pub dynamic_sub_gop: Option<String>,
    pub framerate_control: Option<String>,
    pub framerate_conversion_algorithm: Option<String>,
    pub framerate_denominator: Option<i64>,
    pub framerate_numerator: Option<i64>,
    pub gop_closed_cadence: Option<i64>,
    pub gop_size: Option<f64>,
    pub gop_size_units: Option<String>,
    pub hrd_buffer_initial_fill_percentage: Option<i64>,
    pub hrd_buffer_size: Option<i64>,
    pub interlace_mode: Option<String>,
    pub intra_dc_precision: Option<String>,
    pub max_bitrate: Option<i64>,
    pub min_i_interval: Option<i64>,
    pub number_b_frames_between_reference_frames: Option<i64>,
    pub par_control: Option<String>,
    pub par_denominator: Option<i64>,
    pub par_numerator: Option<i64>,
    pub quality_tuning_level: Option<String>,
    pub rate_control_mode: Option<String>,
    pub scene_change_detect: Option<String>,
    pub slow_pal: Option<String>,
    pub softness: Option<i64>,
    pub spatial_adaptive_quantization: Option<String>,
    pub syntax: Option<String>,
    pub telecine: Option<String>,
    pub temporal_adaptive_quantization: Option<String>,
}

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

Fields

adaptive_quantization: Option<String>bitrate: Option<i64>

Average bitrate in bits/second. Required for VBR and CBR. For MS Smooth outputs, bitrates must be unique when rounded down to the nearest multiple of 1000.

codec_level: Option<String>codec_profile: Option<String>dynamic_sub_gop: Option<String>

Choose Adaptive to improve subjective video quality for high-motion content. This will cause the service to use fewer B-frames (which infer information based on other frames) for high-motion portions of the video and more B-frames for low-motion portions. The maximum number of B-frames is limited by the value you provide for the setting B frames between reference frames (numberBFramesBetweenReferenceFrames).

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

Frame rate denominator.

framerate_numerator: Option<i64>

Frame rate numerator - frame rate is a fraction, e.g. 24000 / 1001 = 23.976 fps.

gop_closed_cadence: Option<i64>

Frequency of closed GOPs. In streaming applications, it is recommended that this be set to 1 so a decoder joining mid-stream will receive an IDR frame as quickly as possible. Setting this value to 0 will break output segmenting.

gop_size: Option<f64>

GOP Length (keyframe interval) in frames or seconds. Must be greater than zero.

gop_size_units: Option<String>hrd_buffer_initial_fill_percentage: Option<i64>

Percentage of the buffer that should initially be filled (HRD buffer model).

hrd_buffer_size: Option<i64>

Size of buffer (HRD buffer model) in bits. For example, enter five megabits as 5000000.

interlace_mode: Option<String>intra_dc_precision: Option<String>max_bitrate: Option<i64>

Maximum bitrate in bits/second. For example, enter five megabits per second as 5000000.

min_i_interval: Option<i64>

Enforces separation between repeated (cadence) I-frames and I-frames inserted by Scene Change Detection. If a scene change I-frame is within I-interval frames of a cadence I-frame, the GOP is shrunk and/or stretched to the scene change I-frame. GOP stretch requires enabling lookahead as well as setting I-interval. The normal cadence resumes for the next GOP. This setting is only used when Scene Change Detect is enabled. Note: Maximum GOP stretch = GOP size + Min-I-interval - 1

number_b_frames_between_reference_frames: Option<i64>

Number of B-frames between reference frames.

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

Pixel Aspect Ratio denominator.

par_numerator: Option<i64>

Pixel Aspect Ratio numerator.

quality_tuning_level: Option<String>rate_control_mode: Option<String>scene_change_detect: Option<String>slow_pal: Option<String>softness: Option<i64>

Softness. Selects quantizer matrix, larger values reduce high-frequency content in the encoded image.

spatial_adaptive_quantization: Option<String>syntax: Option<String>telecine: Option<String>temporal_adaptive_quantization: Option<String>

Trait Implementations

impl PartialEq<Mpeg2Settings> for Mpeg2Settings[src]

impl Default for Mpeg2Settings[src]

impl Clone for Mpeg2Settings[src]

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

Performs copy-assignment from source. Read more

impl Debug for Mpeg2Settings[src]

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

impl Serialize for Mpeg2Settings[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