[][src]Struct rusoto_mediaconvert::VideoDescription

pub struct VideoDescription {
    pub afd_signaling: Option<String>,
    pub anti_alias: Option<String>,
    pub codec_settings: VideoCodecSettings,
    pub color_metadata: Option<String>,
    pub crop: Option<Rectangle>,
    pub drop_frame_timecode: Option<String>,
    pub fixed_afd: Option<i64>,
    pub height: Option<i64>,
    pub position: Option<Rectangle>,
    pub respond_to_afd: Option<String>,
    pub scaling_behavior: Option<String>,
    pub sharpness: Option<i64>,
    pub timecode_insertion: Option<String>,
    pub video_preprocessors: Option<VideoPreprocessor>,
    pub width: Option<i64>,
}

Settings for video outputs

Fields

Applies only if your input aspect ratio is different from your output aspect ratio. Use Input cropping rectangle (Crop) to specify the video area the service will include in the output. This will crop the input source, causing video pixels to be removed on encode. Do not use this setting if you have enabled Stretch to output (stretchToOutput) in your output settings.

Applies only if you set AFD Signaling(AfdSignaling) to Fixed (FIXED). Use Fixed (FixedAfd) to specify a four-bit AFD value which the service will write on all frames of this video output.

Use the Height (Height) setting to define the video resolution height for this output. Specify in pixels. If you don't provide a value here, the service will use the input height.

Use Position (Position) to point to a rectangle object to define your position. This setting overrides any other aspect ratio.

Use Sharpness (Sharpness)setting to specify the strength of anti-aliasing. This setting changes the width of the anti-alias filter kernel used for scaling. Sharpness only applies if your output resolution is different from your input resolution, and if you set Anti-alias (AntiAlias) to ENABLED. 0 is the softest setting, 100 the sharpest, and 50 recommended for most content.

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

Use Width (Width) to define the video resolution width, in pixels, for this output. If you don't provide a value here, the service will use the input width.

Trait Implementations

impl Clone for VideoDescription
[src]

Performs copy-assignment from source. Read more

impl Default for VideoDescription
[src]

impl PartialEq<VideoDescription> for VideoDescription
[src]

impl Debug for VideoDescription
[src]

impl Serialize for VideoDescription
[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

impl<T> ToOwned for T where
    T: Clone
[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, 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> BorrowMut for T where
    T: ?Sized
[src]

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T