Class: Aws::MediaConvert::Types::TimecodeBurnin
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::TimecodeBurnin
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconvert/types.rb
Overview
Settings for burning the output timecode and specified prefix into the output.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#font_size ⇒ Integer
Use Font size to set the font size of any burned-in timecode.
-
#position ⇒ String
Use Position under Timecode burn-in to specify the location the burned-in timecode on output video.
-
#prefix ⇒ String
Use Prefix to place ASCII characters before any burned-in timecode.
Instance Attribute Details
#font_size ⇒ Integer
Use Font size to set the font size of any burned-in timecode. Valid values are 10, 16, 32, 48.
12311 12312 12313 12314 12315 12316 12317 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 12311 class TimecodeBurnin < Struct.new( :font_size, :position, :prefix) SENSITIVE = [] include Aws::Structure end |
#position ⇒ String
Use Position under Timecode burn-in to specify the location the burned-in timecode on output video.
12311 12312 12313 12314 12315 12316 12317 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 12311 class TimecodeBurnin < Struct.new( :font_size, :position, :prefix) SENSITIVE = [] include Aws::Structure end |
#prefix ⇒ String
Use Prefix to place ASCII characters before any burned-in timecode. For example, a prefix of “EZ-” will result in the timecode “EZ-00:00:00:00”. Provide either the characters themselves or the ASCII code equivalents. The supported range of characters is 0x20 through 0x7e. This includes letters, numbers, and all special characters represented on a standard English keyboard.
12311 12312 12313 12314 12315 12316 12317 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 12311 class TimecodeBurnin < Struct.new( :font_size, :position, :prefix) SENSITIVE = [] include Aws::Structure end |