You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MediaLive::Types::InputClippingSettings

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing InputClippingSettings as input to an Aws::Client method, you can use a vanilla Hash:

{
  input_timecode_source: "ZEROBASED", # required, accepts ZEROBASED, EMBEDDED
  start_timecode: {
    timecode: "__string",
  },
  stop_timecode: {
    last_frame_clipping_behavior: "EXCLUDE_LAST_FRAME", # accepts EXCLUDE_LAST_FRAME, INCLUDE_LAST_FRAME
    timecode: "__string",
  },
}

Settings to let you create a clip of the file input, in order to set up the input to ingest only a portion of the file.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#input_timecode_sourceString

The source of the timecodes in the source being clipped.

Possible values:

  • ZEROBASED
  • EMBEDDED

Returns:

  • (String)

    The source of the timecodes in the source being clipped.

#start_timecodeTypes::StartTimecode

Settings to identify the start of the clip.

Returns:

#stop_timecodeTypes::StopTimecode

Settings to identify the end of the clip.

Returns: