You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::MediaConvert::Types::DashIsoGroupSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::DashIsoGroupSettings
- Defined in:
- (unknown)
Overview
When passing DashIsoGroupSettings as input to an Aws::Client method, you can use a vanilla Hash:
{
additional_manifests: [
{
manifest_name_modifier: "__stringMin1",
selected_outputs: ["__stringMin1"],
},
],
base_url: "__string",
destination: "__stringPatternS3",
destination_settings: {
s3_settings: {
access_control: {
canned_acl: "PUBLIC_READ", # accepts PUBLIC_READ, AUTHENTICATED_READ, BUCKET_OWNER_READ, BUCKET_OWNER_FULL_CONTROL
},
encryption: {
encryption_type: "SERVER_SIDE_ENCRYPTION_S3", # accepts SERVER_SIDE_ENCRYPTION_S3, SERVER_SIDE_ENCRYPTION_KMS
kms_key_arn: "__stringPatternArnAwsUsGovCnKmsAZ26EastWestCentralNorthSouthEastWest1912D12KeyAFAF098AFAF094AFAF094AFAF094AFAF0912",
},
},
},
encryption: {
playback_device_compatibility: "CENC_V1", # accepts CENC_V1, UNENCRYPTED_SEI
speke_key_provider: {
certificate_arn: "__stringPatternArnAwsUsGovAcm",
resource_id: "__string",
system_ids: ["__stringPattern09aFAF809aFAF409aFAF409aFAF409aFAF12"],
url: "__stringPatternHttps",
},
},
fragment_length: 1,
hbbtv_compliance: "HBBTV_1_5", # accepts HBBTV_1_5, NONE
min_buffer_time: 1,
mpd_profile: "MAIN_PROFILE", # accepts MAIN_PROFILE, ON_DEMAND_PROFILE
segment_control: "SINGLE_FILE", # accepts SINGLE_FILE, SEGMENTED_FILES
segment_length: 1,
write_segment_timeline_in_representation: "ENABLED", # accepts ENABLED, DISABLED
}
Required when you set (Type) under (OutputGroups)>(OutputGroupSettings) to DASH_ISO_GROUP_SETTINGS.
Returned by:
Instance Attribute Summary collapse
-
#additional_manifests ⇒ Array<Types::DashAdditionalManifest>
By default, the service creates one .mpd DASH manifest for each DASH ISO output group in your job.
-
#base_url ⇒ String
A partial URI prefix that will be put in the manifest (.mpd) file at the top level BaseURL element.
-
#destination ⇒ String
Use Destination (Destination) to specify the S3 output location and the output filename base.
-
#destination_settings ⇒ Types::DestinationSettings
Settings associated with the destination.
-
#encryption ⇒ Types::DashIsoEncryptionSettings
DRM settings.
-
#fragment_length ⇒ Integer
Length of fragments to generate (in seconds).
-
#hbbtv_compliance ⇒ String
Supports HbbTV specification as indicated
Possible values:
- HBBTV_1_5
- NONE
-
#min_buffer_time ⇒ Integer
Minimum time of initially buffered media that is needed to ensure smooth playout.
-
#mpd_profile ⇒ String
Specify whether your DASH profile is on-demand or main.
-
#segment_control ⇒ String
When set to SINGLE_FILE, a single output file is generated, which is internally segmented using the Fragment Length and Segment Length.
-
#segment_length ⇒ Integer
Length of mpd segments to create (in seconds).
-
#write_segment_timeline_in_representation ⇒ String
If you get an HTTP error in the 400 range when you play back your DASH output, enable this setting and run your transcoding job again.
Instance Attribute Details
#additional_manifests ⇒ Array<Types::DashAdditionalManifest>
By default, the service creates one .mpd DASH manifest for each DASH ISO output group in your job. This default manifest references every output in the output group. To create additional DASH manifests that reference a subset of the outputs in the output group, specify a list of them here.
#base_url ⇒ String
A partial URI prefix that will be put in the manifest (.mpd) file at the top level BaseURL element. Can be used if streams are delivered from a different URL than the manifest file.
#destination ⇒ String
Use Destination (Destination) to specify the S3 output location and the output filename base. Destination accepts format identifiers. If you do not specify the base filename in the URI, the service will use the filename of the input file. If your job has multiple inputs, the service uses the filename of the first input file.
#destination_settings ⇒ Types::DestinationSettings
Settings associated with the destination. Will vary based on the type of destination
#encryption ⇒ Types::DashIsoEncryptionSettings
DRM settings.
#fragment_length ⇒ Integer
Length of fragments to generate (in seconds). Fragment length must be compatible with GOP size and Framerate. Note that fragments will end on the next keyframe after this number of seconds, so actual fragment length may be longer. When Emit Single File is checked, the fragmentation is internal to a single output file and it does not cause the creation of many output files as in other output types.
#hbbtv_compliance ⇒ String
Supports HbbTV specification as indicated
Possible values:
- HBBTV_1_5
- NONE
#min_buffer_time ⇒ Integer
Minimum time of initially buffered media that is needed to ensure smooth playout.
#mpd_profile ⇒ String
Specify whether your DASH profile is on-demand or main. When you choose Main profile (MAIN_PROFILE), the service signals urn:mpeg:dash:profile:isoff-main:2011 in your .mpd DASH manifest. When you choose On-demand (ON_DEMAND_PROFILE), the service signals urn:mpeg:dash:profile:isoff-on-demand:2011 in your .mpd. When you choose On-demand, you must also set the output group setting Segment control (SegmentControl) to Single file (SINGLE_FILE).
Possible values:
- MAIN_PROFILE
- ON_DEMAND_PROFILE
#segment_control ⇒ String
When set to SINGLE_FILE, a single output file is generated, which is internally segmented using the Fragment Length and Segment Length. When set to SEGMENTED_FILES, separate segment files will be created.
Possible values:
- SINGLE_FILE
- SEGMENTED_FILES
#segment_length ⇒ Integer
Length of mpd segments to create (in seconds). Note that segments will end on the next keyframe after this number of seconds, so actual segment length may be longer. When Emit Single File is checked, the segmentation is internal to a single output file and it does not cause the creation of many output files as in other output types.
#write_segment_timeline_in_representation ⇒ String
If you get an HTTP error in the 400 range when you play back your DASH output, enable this setting and run your transcoding job again. When you enable this setting, the service writes precise segment durations in the DASH manifest. The segment duration information appears inside the SegmentTimeline element, inside SegmentTemplate at the Representation level. When you don\'t enable this setting, the service writes approximate segment durations in your DASH manifest.
Possible values:
- ENABLED
- DISABLED