[][src]Struct rusoto_mediaconvert::H264Settings

pub struct H264Settings {
    pub adaptive_quantization: Option<String>,
    pub bitrate: Option<i64>,
    pub codec_level: Option<String>,
    pub codec_profile: Option<String>,
    pub entropy_encoding: Option<String>,
    pub field_encoding: Option<String>,
    pub flicker_adaptive_quantization: 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_b_reference: Option<String>,
    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 max_bitrate: Option<i64>,
    pub min_i_interval: Option<i64>,
    pub number_b_frames_between_reference_frames: Option<i64>,
    pub number_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 repeat_pps: Option<String>,
    pub scene_change_detect: Option<String>,
    pub slices: Option<i64>,
    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>,
    pub unregistered_sei_timecode: Option<String>,
}

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

Fields

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.

When you use the API for transcode jobs that use framerate conversion, specify the framerate as a fraction. For example, 24000 / 1001 = 23.976 fps. Use FramerateDenominator to specify the denominator of this fraction. In this example, use 1001 for the value of FramerateDenominator. When you use the console for transcode jobs that use framerate conversion, provide the value as a decimal number for Framerate. In this example, specify 23.976.

Framerate numerator - framerate is a fraction, e.g. 24000 / 1001 = 23.976 fps.

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 Length (keyframe interval) in frames or seconds. Must be greater than zero.

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

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

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

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 of B-frames between reference frames.

Number of reference frames to use. The encoder may use more than requested if using B-frames and/or interlaced encoding.

Pixel Aspect Ratio denominator.

Pixel Aspect Ratio numerator.

Number of slices per picture. Must be less than or equal to the number of macroblock rows for progressive pictures, and less than or equal to half the number of macroblock rows for interlaced pictures.

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

Trait Implementations

impl Clone for H264Settings
[src]

Performs copy-assignment from source. Read more

impl Default for H264Settings
[src]

impl PartialEq<H264Settings> for H264Settings
[src]

impl Debug for H264Settings
[src]

impl Serialize for H264Settings
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

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

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

Should always be Self