TimecodeBurninSettings
- class aws_cdk.aws_medialive_alpha.TimecodeBurninSettings(*, font_size=None, position=None, prefix=None)
Bases:
object(experimental) Settings for burning a timecode overlay into the video output.
- Parameters:
font_size (
Optional[TimecodeBurninFontSize]) – (experimental) The font size of the timecode overlay. Default: - service defaultposition (
Optional[TimecodeBurninPosition]) – (experimental) The position of the timecode overlay on the video. Default: - service defaultprefix (
Optional[str]) – (experimental) A string prepended to the timecode (e.g. a channel name). Default: - no prefix
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_medialive_alpha as medialive_alpha # timecode_burnin_font_size: medialive_alpha.TimecodeBurninFontSize # timecode_burnin_position: medialive_alpha.TimecodeBurninPosition timecode_burnin_settings = medialive_alpha.TimecodeBurninSettings( font_size=timecode_burnin_font_size, position=timecode_burnin_position, prefix="prefix" )
Attributes
- font_size
(experimental) The font size of the timecode overlay.
- Default:
service default
- Stability:
experimental
- position
(experimental) The position of the timecode overlay on the video.
- Default:
service default
- Stability:
experimental
- prefix
(experimental) A string prepended to the timecode (e.g. a channel name).
- Default:
no prefix
- Stability:
experimental