Class: Aws::MediaConvert::Types::VideoOverlay

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb

Overview

Overlay one or more videos on top of your input video. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/video-overlays.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_timecodeString

Enter the end timecode in the underlying input video for this overlay. Your overlay will be active through this frame. To display your video overlay for the duration of the underlying video: Leave blank. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for the underlying Input timecode source. For example, if you have embedded timecodes that start at 01:00:00:00 and you want your overlay to end ten minutes into the video, enter 01:10:00:00.

Returns:

  • (String)


12799
12800
12801
12802
12803
12804
12805
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 12799

class VideoOverlay < Struct.new(
  :end_timecode,
  :input,
  :start_timecode)
  SENSITIVE = []
  include Aws::Structure
end

#inputTypes::VideoOverlayInput

Input settings for Video overlay. You can include one or more video overlays in sequence at different times that you specify.



12799
12800
12801
12802
12803
12804
12805
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 12799

class VideoOverlay < Struct.new(
  :end_timecode,
  :input,
  :start_timecode)
  SENSITIVE = []
  include Aws::Structure
end

#start_timecodeString

Enter the start timecode in the underlying input video for this overlay. Your overlay will be active starting with this frame. To display your video overlay starting at the beginning of the underlying video: Leave blank. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for the underlying Input timecode source. For example, if you have embedded timecodes that start at 01:00:00:00 and you want your overlay to begin five minutes into the video, enter 01:05:00:00.

Returns:

  • (String)


12799
12800
12801
12802
12803
12804
12805
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 12799

class VideoOverlay < Struct.new(
  :end_timecode,
  :input,
  :start_timecode)
  SENSITIVE = []
  include Aws::Structure
end