[][src]Struct rusoto_mediaconvert::H265Settings

pub struct H265Settings {
    pub adaptive_quantization: Option<String>,
    pub alternate_transfer_function_sei: Option<String>,
    pub bitrate: Option<i64>,
    pub codec_level: Option<String>,
    pub codec_profile: Option<String>,
    pub dynamic_sub_gop: 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 qvbr_settings: Option<H265QvbrSettings>,
    pub rate_control_mode: Option<String>,
    pub sample_adaptive_offset_filter_mode: Option<String>,
    pub scene_change_detect: Option<String>,
    pub slices: Option<i64>,
    pub slow_pal: Option<String>,
    pub spatial_adaptive_quantization: Option<String>,
    pub telecine: Option<String>,
    pub temporal_adaptive_quantization: Option<String>,
    pub temporal_ids: Option<String>,
    pub tiles: Option<String>,
    pub unregistered_sei_timecode: Option<String>,
    pub write_mp_4_packaging_type: Option<String>,
}

Settings for H265 codec

Fields

adaptive_quantization: Option<String>alternate_transfer_function_sei: 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).

flicker_adaptive_quantization: Option<String>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_b_reference: Option<String>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>max_bitrate: Option<i64>

Maximum bitrate in bits/second. For example, enter five megabits per second as 5000000. Required when Rate control mode is QVBR.

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.

number_reference_frames: Option<i64>

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

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>qvbr_settings: Option<H265QvbrSettings>

Settings for quality-defined variable bitrate encoding with the H.265 codec. Required when you set Rate control mode to QVBR. Not valid when you set Rate control mode to a value other than QVBR, or when you don't define Rate control mode.

rate_control_mode: Option<String>sample_adaptive_offset_filter_mode: Option<String>scene_change_detect: Option<String>slices: Option<i64>

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.

slow_pal: Option<String>spatial_adaptive_quantization: Option<String>telecine: Option<String>temporal_adaptive_quantization: Option<String>temporal_ids: Option<String>tiles: Option<String>unregistered_sei_timecode: Option<String>write_mp_4_packaging_type: Option<String>

Trait Implementations

impl PartialEq<H265Settings> for H265Settings[src]

impl Default for H265Settings[src]

impl Clone for H265Settings[src]

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

Performs copy-assignment from source. Read more

impl Debug for H265Settings[src]

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

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