logo
pub struct JobTemplateSettings {
    pub ad_avail_offset: Option<i64>,
    pub avail_blanking: Option<AvailBlanking>,
    pub esam: Option<EsamSettings>,
    pub inputs: Option<Vec<InputTemplate>>,
    pub kantar_watermark: Option<KantarWatermarkSettings>,
    pub motion_image_inserter: Option<MotionImageInserter>,
    pub nielsen_configuration: Option<NielsenConfiguration>,
    pub nielsen_non_linear_watermark: Option<NielsenNonLinearWatermarkSettings>,
    pub output_groups: Option<Vec<OutputGroup>>,
    pub timecode_config: Option<TimecodeConfig>,
    pub timed_metadata_insertion: Option<TimedMetadataInsertion>,
}
Expand description

JobTemplateSettings contains all the transcode settings saved in the template that will be applied to jobs created from it.

Fields

ad_avail_offset: Option<i64>

When specified, this offset (in milliseconds) is added to the input Ad Avail PTS time.

avail_blanking: Option<AvailBlanking>

Settings for ad avail blanking. Video can be blanked or overlaid with an image, and audio muted during SCTE-35 triggered ad avails.

esam: Option<EsamSettings>

Settings for Event Signaling And Messaging (ESAM). If you don't do ad insertion, you can ignore these settings.

inputs: Option<Vec<InputTemplate>>

Use Inputs (inputs) to define the source file used in the transcode job. There can only be one input in a job template. Using the API, you can include multiple inputs when referencing a job template.

kantar_watermark: Option<KantarWatermarkSettings>

Use these settings only when you use Kantar watermarking. Specify the values that MediaConvert uses to generate and place Kantar watermarks in your output audio. These settings apply to every output in your job. In addition to specifying these values, you also need to store your Kantar credentials in AWS Secrets Manager. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/kantar-watermarking.html.

motion_image_inserter: Option<MotionImageInserter>

Overlay motion graphics on top of your video. The motion graphics that you specify here appear on all outputs in all output groups. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/motion-graphic-overlay.html.

nielsen_configuration: Option<NielsenConfiguration>

Settings for your Nielsen configuration. If you don't do Nielsen measurement and analytics, ignore these settings. When you enable Nielsen configuration (nielsenConfiguration), MediaConvert enables PCM to ID3 tagging for all outputs in the job. To enable Nielsen configuration programmatically, include an instance of nielsenConfiguration in your JSON job specification. Even if you don't include any children of nielsenConfiguration, you still enable the setting.

nielsen_non_linear_watermark: Option<NielsenNonLinearWatermarkSettings>

Ignore these settings unless you are using Nielsen non-linear watermarking. Specify the values that MediaConvert uses to generate and place Nielsen watermarks in your output audio. In addition to specifying these values, you also need to set up your cloud TIC server. These settings apply to every output in your job. The MediaConvert implementation is currently with the following Nielsen versions: Nielsen Watermark SDK Version 5.2.1 Nielsen NLM Watermark Engine Version 1.2.7 Nielsen Watermark Authenticator [SID_TIC] Version [5.0.0]

output_groups: Option<Vec<OutputGroup>>

(OutputGroups) contains one group of settings for each set of outputs that share a common package type. All unpackaged files (MPEG-4, MPEG-2 TS, Quicktime, MXF, and no container) are grouped in a single output group as well. Required in (OutputGroups) is a group of settings that apply to the whole group. This required object depends on the value you set for (Type) under (OutputGroups)>(OutputGroupSettings). Type, settings object pairs are as follows. * FILEGROUPSETTINGS, FileGroupSettings * HLSGROUPSETTINGS, HlsGroupSettings * DASHISOGROUPSETTINGS, DashIsoGroupSettings * MSSMOOTHGROUPSETTINGS, MsSmoothGroupSettings * CMAFGROUPSETTINGS, CmafGroupSettings

timecode_config: Option<TimecodeConfig>

These settings control how the service handles timecodes throughout the job. These settings don't affect input clipping.

timed_metadata_insertion: Option<TimedMetadataInsertion>

Enable Timed metadata insertion (TimedMetadataInsertion) to include ID3 tags in any HLS outputs. To include timed metadata, you must enable it here, enable it in each output container, and specify tags and timecodes in ID3 insertion (Id3Insertion) objects.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more