Class: Aws::IVS::Types::ThumbnailConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVS::Types::ThumbnailConfiguration
- Defined in:
- gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb
Overview
An object representing a configuration of thumbnails for recorded video.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#recording_mode ⇒ String
Thumbnail recording mode.
-
#target_interval_seconds ⇒ Integer
The targeted thumbnail-generation interval in seconds.
Instance Attribute Details
#recording_mode ⇒ String
Thumbnail recording mode. Default: INTERVAL
.
1687 1688 1689 1690 1691 1692 |
# File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 1687 class ThumbnailConfiguration < Struct.new( :recording_mode, :target_interval_seconds) SENSITIVE = [] include Aws::Structure end |
#target_interval_seconds ⇒ Integer
The targeted thumbnail-generation interval in seconds. This is
configurable (and required) only if recordingMode
is INTERVAL
.
Default: 60.
Important: Setting a value for targetIntervalSeconds
does not
guarantee that thumbnails are generated at the specified interval.
For thumbnails to be generated at the targetIntervalSeconds
interval, the IDR/Keyframe
value for the input video must be less
than the targetIntervalSeconds
value. See Amazon IVS Streaming
Configuration for information on setting IDR/Keyframe
to the
recommended value in video-encoder settings.
1687 1688 1689 1690 1691 1692 |
# File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 1687 class ThumbnailConfiguration < Struct.new( :recording_mode, :target_interval_seconds) SENSITIVE = [] include Aws::Structure end |