Interface VideoOverlay.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<VideoOverlay.Builder,
,VideoOverlay> SdkBuilder<VideoOverlay.Builder,
,VideoOverlay> SdkPojo
- Enclosing class:
VideoOverlay
public static interface VideoOverlay.Builder
extends SdkPojo, CopyableBuilder<VideoOverlay.Builder,VideoOverlay>
-
Method Summary
Modifier and TypeMethodDescriptionendTimecode
(String endTimecode) Enter the end timecode in the underlying input video for this overlay.default VideoOverlay.Builder
input
(Consumer<VideoOverlayInput.Builder> input) Input settings for Video overlay.input
(VideoOverlayInput input) Input settings for Video overlay.startTimecode
(String startTimecode) Enter the start timecode in the underlying input video for this overlay.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
endTimecode
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.- Parameters:
endTimecode
- 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:
- Returns a reference to this object so that method calls can be chained together.
-
input
Input settings for Video overlay. You can include one or more video overlays in sequence at different times that you specify.- Parameters:
input
- Input settings for Video overlay. You can include one or more video overlays in sequence at different times that you specify.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
input
Input settings for Video overlay. You can include one or more video overlays in sequence at different times that you specify. This is a convenience method that creates an instance of theVideoOverlayInput.Builder
avoiding the need to create one manually viaVideoOverlayInput.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toinput(VideoOverlayInput)
.- Parameters:
input
- a consumer that will call methods onVideoOverlayInput.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
startTimecode
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.- Parameters:
startTimecode
- 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:
- Returns a reference to this object so that method calls can be chained together.
-