[][src]Struct rusoto_mediaconvert::VideoPreprocessor

pub struct VideoPreprocessor {
    pub color_corrector: Option<ColorCorrector>,
    pub deinterlacer: Option<Deinterlacer>,
    pub dolby_vision: Option<DolbyVision>,
    pub image_inserter: Option<ImageInserter>,
    pub noise_reducer: Option<NoiseReducer>,
    pub partner_watermarking: Option<PartnerWatermarking>,
    pub timecode_burnin: Option<TimecodeBurnin>,
}

Find additional transcoding features under Preprocessors (VideoPreprocessors). Enable the features at each output individually. These features are disabled by default.

Fields

color_corrector: Option<ColorCorrector>

Enable the Color corrector (ColorCorrector) feature if necessary. Enable or disable this feature for each output individually. This setting is disabled by default.

deinterlacer: Option<Deinterlacer>

Use Deinterlacer (Deinterlacer) to produce smoother motion and a clearer picture.

dolby_vision: Option<DolbyVision>

Enable Dolby Vision feature to produce Dolby Vision compatible video output.

image_inserter: Option<ImageInserter>

Enable the Image inserter (ImageInserter) feature to include a graphic overlay on your video. Enable or disable this feature for each output individually. This setting is disabled by default.

noise_reducer: Option<NoiseReducer>

Enable the Noise reducer (NoiseReducer) feature to remove noise from your video output if necessary. Enable or disable this feature for each output individually. This setting is disabled by default.

partner_watermarking: Option<PartnerWatermarking>

If you work with a third party video watermarking partner, use the group of settings that correspond with your watermarking partner to include watermarks in your output.

timecode_burnin: Option<TimecodeBurnin>

Timecode burn-in (TimecodeBurnIn)--Burns the output timecode and specified prefix into the output.

Trait Implementations

impl Clone for VideoPreprocessor[src]

impl Debug for VideoPreprocessor[src]

impl Default for VideoPreprocessor[src]

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

impl PartialEq<VideoPreprocessor> for VideoPreprocessor[src]

impl Serialize for VideoPreprocessor[src]

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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