interface TimecodeBurninSettings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.TimecodeBurninSettings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#TimecodeBurninSettings |
Java | software.amazon.awscdk.services.medialive.alpha.TimecodeBurninSettings |
Python | aws_cdk.aws_medialive_alpha.TimecodeBurninSettings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป TimecodeBurninSettings |
Settings for burning a timecode overlay into the video output.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
declare const timecodeBurninFontSize: medialive_alpha.TimecodeBurninFontSize;
declare const timecodeBurninPosition: medialive_alpha.TimecodeBurninPosition;
const timecodeBurninSettings: medialive_alpha.TimecodeBurninSettings = {
fontSize: timecodeBurninFontSize,
position: timecodeBurninPosition,
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| font | Timecode | The font size of the timecode overlay. |
| position? | Timecode | The position of the timecode overlay on the video. |
| prefix? | string | A string prepended to the timecode (e.g. a channel name). |
fontSize?
Type:
Timecode
(optional, default: service default)
The font size of the timecode overlay.
position?
Type:
Timecode
(optional, default: service default)
The position of the timecode overlay on the video.
prefix?
Type:
string
(optional, default: no prefix)
A string prepended to the timecode (e.g. a channel name).

.NET
Go
Java
Python
TypeScript (