Interface VideoOverlayTransition.Builder

  • Method Details

    • endPosition

      Specify the ending position for this transition, relative to the base input video's frame. Your video overlay will move smoothly to this position, beginning at this transition's Start timecode and ending at this transition's End timecode.
      Parameters:
      endPosition - Specify the ending position for this transition, relative to the base input video's frame. Your video overlay will move smoothly to this position, beginning at this transition's Start timecode and ending at this transition's End timecode.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • endPosition

      Specify the ending position for this transition, relative to the base input video's frame. Your video overlay will move smoothly to this position, beginning at this transition's Start timecode and ending at this transition's End timecode. This is a convenience method that creates an instance of the VideoOverlayPosition.Builder avoiding the need to create one manually via VideoOverlayPosition.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to endPosition(VideoOverlayPosition).

      Parameters:
      endPosition - a consumer that will call methods on VideoOverlayPosition.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • endTimecode

      VideoOverlayTransition.Builder endTimecode(String endTimecode)
      Specify the timecode for when this transition ends. 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 Timecode source.
      Parameters:
      endTimecode - Specify the timecode for when this transition ends. 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 Timecode source.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • startTimecode

      VideoOverlayTransition.Builder startTimecode(String startTimecode)
      Specify the timecode for when this transition begins. 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 Timecode source.
      Parameters:
      startTimecode - Specify the timecode for when this transition begins. 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 Timecode source.
      Returns:
      Returns a reference to this object so that method calls can be chained together.