Class: Aws::MediaPackageVod::Types::HlsPackage
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaPackageVod::Types::HlsPackage
- Defined in:
- gems/aws-sdk-mediapackagevod/lib/aws-sdk-mediapackagevod/types.rb
Overview
When making an API call, you may pass HlsPackage data as a hash:
{
encryption: {
constant_initialization_vector: "__string",
encryption_method: "AES_128", # accepts AES_128, SAMPLE_AES
speke_key_provider: { # required
role_arn: "__string", # required
system_ids: ["__string"], # required
url: "__string", # required
},
},
hls_manifests: [ # required
{
ad_markers: "NONE", # accepts NONE, SCTE35_ENHANCED, PASSTHROUGH
include_iframe_only_stream: false,
manifest_name: "__string",
program_date_time_interval_seconds: 1,
repeat_ext_x_key: false,
stream_selection: {
max_video_bits_per_second: 1,
min_video_bits_per_second: 1,
stream_order: "ORIGINAL", # accepts ORIGINAL, VIDEO_BITRATE_ASCENDING, VIDEO_BITRATE_DESCENDING
},
},
],
include_dvb_subtitles: false,
segment_duration_seconds: 1,
use_audio_rendition_group: false,
}
An HTTP Live Streaming (HLS) packaging configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#encryption ⇒ Types::HlsEncryption
An HTTP Live Streaming (HLS) encryption configuration.
-
#hls_manifests ⇒ Array<Types::HlsManifest>
A list of HLS manifest configurations.
-
#include_dvb_subtitles ⇒ Boolean
When enabled, MediaPackage passes through digital video broadcasting (DVB) subtitles into the output.
-
#segment_duration_seconds ⇒ Integer
Duration (in seconds) of each fragment.
-
#use_audio_rendition_group ⇒ Boolean
When enabled, audio streams will be placed in rendition groups in the output.
Instance Attribute Details
#encryption ⇒ Types::HlsEncryption
An HTTP Live Streaming (HLS) encryption configuration.
1396 1397 1398 1399 1400 1401 1402 1403 1404 |
# File 'gems/aws-sdk-mediapackagevod/lib/aws-sdk-mediapackagevod/types.rb', line 1396 class HlsPackage < Struct.new( :encryption, :hls_manifests, :include_dvb_subtitles, :segment_duration_seconds, :use_audio_rendition_group) SENSITIVE = [] include Aws::Structure end |
#hls_manifests ⇒ Array<Types::HlsManifest>
A list of HLS manifest configurations.
1396 1397 1398 1399 1400 1401 1402 1403 1404 |
# File 'gems/aws-sdk-mediapackagevod/lib/aws-sdk-mediapackagevod/types.rb', line 1396 class HlsPackage < Struct.new( :encryption, :hls_manifests, :include_dvb_subtitles, :segment_duration_seconds, :use_audio_rendition_group) SENSITIVE = [] include Aws::Structure end |
#include_dvb_subtitles ⇒ Boolean
When enabled, MediaPackage passes through digital video broadcasting (DVB) subtitles into the output.
1396 1397 1398 1399 1400 1401 1402 1403 1404 |
# File 'gems/aws-sdk-mediapackagevod/lib/aws-sdk-mediapackagevod/types.rb', line 1396 class HlsPackage < Struct.new( :encryption, :hls_manifests, :include_dvb_subtitles, :segment_duration_seconds, :use_audio_rendition_group) SENSITIVE = [] include Aws::Structure end |
#segment_duration_seconds ⇒ Integer
Duration (in seconds) of each fragment. Actual fragments will be rounded to the nearest multiple of the source fragment duration.
1396 1397 1398 1399 1400 1401 1402 1403 1404 |
# File 'gems/aws-sdk-mediapackagevod/lib/aws-sdk-mediapackagevod/types.rb', line 1396 class HlsPackage < Struct.new( :encryption, :hls_manifests, :include_dvb_subtitles, :segment_duration_seconds, :use_audio_rendition_group) SENSITIVE = [] include Aws::Structure end |
#use_audio_rendition_group ⇒ Boolean
When enabled, audio streams will be placed in rendition groups in the output.
1396 1397 1398 1399 1400 1401 1402 1403 1404 |
# File 'gems/aws-sdk-mediapackagevod/lib/aws-sdk-mediapackagevod/types.rb', line 1396 class HlsPackage < Struct.new( :encryption, :hls_manifests, :include_dvb_subtitles, :segment_duration_seconds, :use_audio_rendition_group) SENSITIVE = [] include Aws::Structure end |