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
show all
Defined in:
(unknown)

Overview

Note:

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

Instance Attribute Details

#additional_manifestsArray<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.

Returns:

#base_urlString

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.

Returns:

  • (String)

    A partial URI prefix that will be put in the manifest (.mpd) file at the top level BaseURL element.

#destinationString

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.

Returns:

  • (String)

    Use Destination (Destination) to specify the S3 output location and the output filename base.

#destination_settingsTypes::DestinationSettings

Settings associated with the destination. Will vary based on the type of destination

Returns:

#encryptionTypes::DashIsoEncryptionSettings

DRM settings.

Returns:

#fragment_lengthInteger

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.

Returns:

  • (Integer)

    Length of fragments to generate (in seconds).

#hbbtv_complianceString

Supports HbbTV specification as indicated

Possible values:

  • HBBTV_1_5
  • NONE

Returns:

  • (String)

    Supports HbbTV specification as indicated.

#min_buffer_timeInteger

Minimum time of initially buffered media that is needed to ensure smooth playout.

Returns:

  • (Integer)

    Minimum time of initially buffered media that is needed to ensure smooth playout.

#mpd_profileString

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

Returns:

  • (String)

    Specify whether your DASH profile is on-demand or main.

#segment_controlString

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

Returns:

  • (String)

    When set to SINGLE_FILE, a single output file is generated, which is internally segmented using the Fragment Length and Segment Length.

#segment_lengthInteger

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.

Returns:

  • (Integer)

    Length of mpd segments to create (in seconds).

#write_segment_timeline_in_representationString

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

Returns:

  • (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.