[][src]Struct rusoto_mediaconvert::ColorCorrector

pub struct ColorCorrector {
    pub brightness: Option<i64>,
    pub color_space_conversion: Option<String>,
    pub contrast: Option<i64>,
    pub hdr_10_metadata: Option<Hdr10Metadata>,
    pub hue: Option<i64>,
    pub saturation: Option<i64>,
}

Settings for color correction.

Fields

brightness: Option<i64>

Brightness level.

color_space_conversion: Option<String>

Specify the color space you want for this output. The service supports conversion between HDR formats, between SDR formats, and from SDR to HDR. The service doesn't support conversion from HDR to SDR. SDR to HDR conversion doesn't upgrade the dynamic range. The converted video has an HDR format, but visually appears the same as an unconverted output.

contrast: Option<i64>

Contrast level.

hdr_10_metadata: Option<Hdr10Metadata>

Use these settings when you convert to the HDR 10 color space. Specify the SMPTE ST 2086 Mastering Display Color Volume static metadata that you want signaled in the output. These values don't affect the pixel values that are encoded in the video stream. They are intended to help the downstream video player display content in a way that reflects the intentions of the the content creator. When you set Color space conversion (ColorSpaceConversion) to HDR 10 (FORCE_HDR10), these settings are required. You must set values for Max frame average light level (maxFrameAverageLightLevel) and Max content light level (maxContentLightLevel); these settings don't have a default value. The default values for the other HDR 10 metadata settings are defined by the P3D65 color space. For more information about MediaConvert HDR jobs, see https://docs.aws.amazon.com/console/mediaconvert/hdr.

hue: Option<i64>

Hue in degrees.

saturation: Option<i64>

Saturation level.

Trait Implementations

impl Clone for ColorCorrector[src]

impl Debug for ColorCorrector[src]

impl Default for ColorCorrector[src]

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

impl PartialEq<ColorCorrector> for ColorCorrector[src]

impl Serialize for ColorCorrector[src]

impl StructuralPartialEq for ColorCorrector[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.