Class: Aws::MediaConvert::Types::MpdSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::MpdSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconvert/types.rb
Overview
These settings relate to the fragmented MP4 container for the segments in your DASH outputs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#accessibility_caption_hints ⇒ String
Optional.
-
#audio_duration ⇒ String
Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio.
-
#c2pa_manifest ⇒ String
When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output.
-
#caption_container_type ⇒ String
Use this setting only in DASH output groups that include sidecar TTML, IMSC or WEBVTT captions.
-
#certificate_secret ⇒ String
Specify the name or ARN of the AWS Secrets Manager secret that contains your C2PA public certificate chain in PEM format.
-
#klv_metadata ⇒ String
To include key-length-value metadata in this output: Set KLV metadata insertion to Passthrough.
-
#manifest_metadata_signaling ⇒ String
To add an InbandEventStream element in your output MPD manifest for each type of event message, set Manifest metadata signaling to Enabled.
-
#scte_35_esam ⇒ String
Use this setting only when you specify SCTE-35 markers from ESAM.
-
#scte_35_source ⇒ String
Ignore this setting unless you have SCTE-35 markers in your input video file.
-
#signing_kms_key ⇒ String
Specify the ID or ARN of the AWS KMS key used to sign the C2PA manifest in your MP4 output.
-
#timed_metadata ⇒ String
To include ID3 metadata in this output: Set ID3 metadata to Passthrough.
-
#timed_metadata_box_version ⇒ String
Specify the event message box (eMSG) version for ID3 timed metadata in your output.
-
#timed_metadata_scheme_id_uri ⇒ String
Specify the event message box (eMSG) scheme ID URI for ID3 timed metadata in your output.
-
#timed_metadata_value ⇒ String
Specify the event message box (eMSG) value for ID3 timed metadata in your output.
Instance Attribute Details
#accessibility_caption_hints ⇒ String
Optional. Choose Include to have MediaConvert mark up your DASH manifest with <Accessibility> elements for embedded 608 captions. This markup isn’t generally required, but some video players require it to discover and play embedded 608 captions. Keep the default value, Exclude, to leave these elements out. When you enable this setting, this is the markup that MediaConvert includes in your manifest: <Accessibility schemeIdUri=“urn:scte:dash:cc:cea-608:2015” value=“CC1=eng” /> </Accessibility>
11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11065 class MpdSettings < Struct.new( :accessibility_caption_hints, :audio_duration, :c2pa_manifest, :caption_container_type, :certificate_secret, :klv_metadata, :manifest_metadata_signaling, :scte_35_esam, :scte_35_source, :signing_kms_key, :timed_metadata, :timed_metadata_box_version, :timed_metadata_scheme_id_uri, :timed_metadata_value) SENSITIVE = [] include Aws::Structure end |
#audio_duration ⇒ String
Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration. In all other cases, keep the default value, Default codec duration. When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec.
11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11065 class MpdSettings < Struct.new( :accessibility_caption_hints, :audio_duration, :c2pa_manifest, :caption_container_type, :certificate_secret, :klv_metadata, :manifest_metadata_signaling, :scte_35_esam, :scte_35_source, :signing_kms_key, :timed_metadata, :timed_metadata_box_version, :timed_metadata_scheme_id_uri, :timed_metadata_value) SENSITIVE = [] include Aws::Structure end |
#c2pa_manifest ⇒ String
When enabled, a C2PA compliant manifest will be generated, signed and embeded in the output. For more information on C2PA, see c2pa.org/specifications/specifications/2.1/index.html
11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11065 class MpdSettings < Struct.new( :accessibility_caption_hints, :audio_duration, :c2pa_manifest, :caption_container_type, :certificate_secret, :klv_metadata, :manifest_metadata_signaling, :scte_35_esam, :scte_35_source, :signing_kms_key, :timed_metadata, :timed_metadata_box_version, :timed_metadata_scheme_id_uri, :timed_metadata_value) SENSITIVE = [] include Aws::Structure end |
#caption_container_type ⇒ String
Use this setting only in DASH output groups that include sidecar TTML, IMSC or WEBVTT captions. You specify sidecar captions in a separate output from your audio and video. Choose Raw for captions in a single XML file in a raw container. Choose Fragmented MPEG-4 for captions in XML format contained within fragmented MP4 files. This set of fragmented MP4 files is separate from your video and audio fragmented MP4 files.
11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11065 class MpdSettings < Struct.new( :accessibility_caption_hints, :audio_duration, :c2pa_manifest, :caption_container_type, :certificate_secret, :klv_metadata, :manifest_metadata_signaling, :scte_35_esam, :scte_35_source, :signing_kms_key, :timed_metadata, :timed_metadata_box_version, :timed_metadata_scheme_id_uri, :timed_metadata_value) SENSITIVE = [] include Aws::Structure end |
#certificate_secret ⇒ String
Specify the name or ARN of the AWS Secrets Manager secret that contains your C2PA public certificate chain in PEM format. Provide a valid secret name or ARN. Note that your MediaConvert service role must allow access to this secret. The public certificate chain is added to the COSE header (x5chain) for signature validation. Include the signer’s certificate and all intermediate certificates. Do not include the root certificate. For details on COSE, see: opensource.contentauthenticity.org/docs/manifest/signing-manifests
11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11065 class MpdSettings < Struct.new( :accessibility_caption_hints, :audio_duration, :c2pa_manifest, :caption_container_type, :certificate_secret, :klv_metadata, :manifest_metadata_signaling, :scte_35_esam, :scte_35_source, :signing_kms_key, :timed_metadata, :timed_metadata_box_version, :timed_metadata_scheme_id_uri, :timed_metadata_value) SENSITIVE = [] include Aws::Structure end |
#klv_metadata ⇒ String
To include key-length-value metadata in this output: Set KLV metadata insertion to Passthrough. MediaConvert reads KLV metadata present in your input and writes each instance to a separate event message box in the output, according to MISB ST1910.1. To exclude this KLV metadata: Set KLV metadata insertion to None or leave blank.
11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11065 class MpdSettings < Struct.new( :accessibility_caption_hints, :audio_duration, :c2pa_manifest, :caption_container_type, :certificate_secret, :klv_metadata, :manifest_metadata_signaling, :scte_35_esam, :scte_35_source, :signing_kms_key, :timed_metadata, :timed_metadata_box_version, :timed_metadata_scheme_id_uri, :timed_metadata_value) SENSITIVE = [] include Aws::Structure end |
#manifest_metadata_signaling ⇒ String
To add an InbandEventStream element in your output MPD manifest for each type of event message, set Manifest metadata signaling to Enabled. For ID3 event messages, the InbandEventStream element schemeIdUri will be same value that you specify for ID3 metadata scheme ID URI. For SCTE35 event messages, the InbandEventStream element schemeIdUri will be “urn:scte:scte35:2013:bin”. To leave these elements out of your output MPD manifest, set Manifest metadata signaling to Disabled. To enable Manifest metadata signaling, you must also set SCTE-35 source to Passthrough, ESAM SCTE-35 to insert, or ID3 metadata to Passthrough.
11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11065 class MpdSettings < Struct.new( :accessibility_caption_hints, :audio_duration, :c2pa_manifest, :caption_container_type, :certificate_secret, :klv_metadata, :manifest_metadata_signaling, :scte_35_esam, :scte_35_source, :signing_kms_key, :timed_metadata, :timed_metadata_box_version, :timed_metadata_scheme_id_uri, :timed_metadata_value) SENSITIVE = [] include Aws::Structure end |
#scte_35_esam ⇒ String
Use this setting only when you specify SCTE-35 markers from ESAM. Choose INSERT to put SCTE-35 markers in this output at the insertion points that you specify in an ESAM XML document. Provide the document in the setting SCC XML.
11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11065 class MpdSettings < Struct.new( :accessibility_caption_hints, :audio_duration, :c2pa_manifest, :caption_container_type, :certificate_secret, :klv_metadata, :manifest_metadata_signaling, :scte_35_esam, :scte_35_source, :signing_kms_key, :timed_metadata, :timed_metadata_box_version, :timed_metadata_scheme_id_uri, :timed_metadata_value) SENSITIVE = [] include Aws::Structure end |
#scte_35_source ⇒ String
Ignore this setting unless you have SCTE-35 markers in your input video file. Choose Passthrough if you want SCTE-35 markers that appear in your input to also appear in this output. Choose None if you don’t want those SCTE-35 markers in this output.
11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11065 class MpdSettings < Struct.new( :accessibility_caption_hints, :audio_duration, :c2pa_manifest, :caption_container_type, :certificate_secret, :klv_metadata, :manifest_metadata_signaling, :scte_35_esam, :scte_35_source, :signing_kms_key, :timed_metadata, :timed_metadata_box_version, :timed_metadata_scheme_id_uri, :timed_metadata_value) SENSITIVE = [] include Aws::Structure end |
#signing_kms_key ⇒ String
Specify the ID or ARN of the AWS KMS key used to sign the C2PA manifest in your MP4 output. Provide a valid KMS key ARN. Note that your MediaConvert service role must allow access to this key.
11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11065 class MpdSettings < Struct.new( :accessibility_caption_hints, :audio_duration, :c2pa_manifest, :caption_container_type, :certificate_secret, :klv_metadata, :manifest_metadata_signaling, :scte_35_esam, :scte_35_source, :signing_kms_key, :timed_metadata, :timed_metadata_box_version, :timed_metadata_scheme_id_uri, :timed_metadata_value) SENSITIVE = [] include Aws::Structure end |
#timed_metadata ⇒ String
To include ID3 metadata in this output: Set ID3 metadata to Passthrough. Specify this ID3 metadata in Custom ID3 metadata inserter. MediaConvert writes each instance of ID3 metadata in a separate Event Message (eMSG) box. To exclude this ID3 metadata: Set ID3 metadata to None or leave blank.
11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11065 class MpdSettings < Struct.new( :accessibility_caption_hints, :audio_duration, :c2pa_manifest, :caption_container_type, :certificate_secret, :klv_metadata, :manifest_metadata_signaling, :scte_35_esam, :scte_35_source, :signing_kms_key, :timed_metadata, :timed_metadata_box_version, :timed_metadata_scheme_id_uri, :timed_metadata_value) SENSITIVE = [] include Aws::Structure end |
#timed_metadata_box_version ⇒ String
Specify the event message box (eMSG) version for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.3 Syntax. Leave blank to use the default value Version 0. When you specify Version 1, you must also set ID3 metadata to Passthrough.
11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11065 class MpdSettings < Struct.new( :accessibility_caption_hints, :audio_duration, :c2pa_manifest, :caption_container_type, :certificate_secret, :klv_metadata, :manifest_metadata_signaling, :scte_35_esam, :scte_35_source, :signing_kms_key, :timed_metadata, :timed_metadata_box_version, :timed_metadata_scheme_id_uri, :timed_metadata_value) SENSITIVE = [] include Aws::Structure end |
#timed_metadata_scheme_id_uri ⇒ String
Specify the event message box (eMSG) scheme ID URI for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. Leave blank to use the default value: aomedia.org/emsg/ID3 When you specify a value for ID3 metadata scheme ID URI, you must also set ID3 metadata to Passthrough.
11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11065 class MpdSettings < Struct.new( :accessibility_caption_hints, :audio_duration, :c2pa_manifest, :caption_container_type, :certificate_secret, :klv_metadata, :manifest_metadata_signaling, :scte_35_esam, :scte_35_source, :signing_kms_key, :timed_metadata, :timed_metadata_box_version, :timed_metadata_scheme_id_uri, :timed_metadata_value) SENSITIVE = [] include Aws::Structure end |
#timed_metadata_value ⇒ String
Specify the event message box (eMSG) value for ID3 timed metadata in your output. For more information, see ISO/IEC 23009-1:2022 section 5.10.3.3.4 Semantics. When you specify a value for ID3 Metadata Value, you must also set ID3 metadata to Passthrough.
11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 11065 class MpdSettings < Struct.new( :accessibility_caption_hints, :audio_duration, :c2pa_manifest, :caption_container_type, :certificate_secret, :klv_metadata, :manifest_metadata_signaling, :scte_35_esam, :scte_35_source, :signing_kms_key, :timed_metadata, :timed_metadata_box_version, :timed_metadata_scheme_id_uri, :timed_metadata_value) SENSITIVE = [] include Aws::Structure end |