Class: Aws::MediaConvert::Types::InputClipping
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::InputClipping
- Defined in:
- gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb
Overview
To transcode only portions of your input, include one input clip for each part of your input that you want in your output. All input clips that you specify will be included in every output of the job. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/assembling-multiple-inputs-and-input-clips.html.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_timecode ⇒ String
Set End timecode to the end of the portion of the input you are clipping.
-
#start_timecode ⇒ String
Set Start timecode to the beginning of the portion of the input you are clipping.
Instance Attribute Details
#end_timecode ⇒ String
Set End timecode to the end of the portion of the input you are clipping. The frame corresponding to the End timecode value is included in the clip. Start timecode or End timecode may be left blank, but not both. 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 choosing this value, take into account your setting for timecode source under input settings. For example, if you have embedded timecodes that start at 01:00:00:00 and you want your clip to end six minutes into the video, use 01:06:00:00.
7516 7517 7518 7519 7520 7521 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 7516 class InputClipping < Struct.new( :end_timecode, :start_timecode) SENSITIVE = [] include Aws::Structure end |
#start_timecode ⇒ String
Set Start timecode to the beginning of the portion of the input you are clipping. The frame corresponding to the Start timecode value is included in the clip. Start timecode or End timecode may be left blank, but not both. 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 choosing this value, take into account your setting for Input timecode source. For example, if you have embedded timecodes that start at 01:00:00:00 and you want your clip to begin five minutes into the video, use 01:05:00:00.
7516 7517 7518 7519 7520 7521 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 7516 class InputClipping < Struct.new( :end_timecode, :start_timecode) SENSITIVE = [] include Aws::Structure end |