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>,
}Expand description
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§
Source§impl Clone for VideoPreprocessor
impl Clone for VideoPreprocessor
Source§fn clone(&self) -> VideoPreprocessor
fn clone(&self) -> VideoPreprocessor
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more