interface CmafIngestOutputDefinition
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.CmafIngestOutputDefinition |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#CmafIngestOutputDefinition |
Java | software.amazon.awscdk.services.medialive.alpha.CmafIngestOutputDefinition |
Python | aws_cdk.aws_medialive_alpha.CmafIngestOutputDefinition |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป CmafIngestOutputDefinition |
Output definition for a CMAF Ingest output group.
CMAF Ingest requires one media track (video or audio) per output. In-band captions (burn-in, embedded) can ride alongside the primary encode.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
declare const encodeConfiguration: medialive_alpha.EncodeConfiguration;
const cmafIngestOutputDefinition: medialive_alpha.CmafIngestOutputDefinition = {
encode: encodeConfiguration,
outputName: 'outputName',
// the properties below are optional
captions: [encodeConfiguration],
nameModifier: 'nameModifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| encode | Encode | The primary encode for this output โ one video or one audio track. |
| output | string | The name of this output. |
| captions? | Encode[] | Caption encodes that ride alongside the primary encode. |
| name | string | A string concatenated to the end of the destination file name. |
encode
Type:
Encode
The primary encode for this output โ one video or one audio track.
outputName
Type:
string
The name of this output.
Must be unique across all outputs in the channel.
captions?
Type:
Encode[]
(optional, default: no captions on this output)
Caption encodes that ride alongside the primary encode.
Only in-band caption types are allowed (burn-in, embedded) โ out-of-band captions must go in their own output.
nameModifier?
Type:
string
(optional, default: no name modifier)
A string concatenated to the end of the destination file name.

.NET
Go
Java
Python
TypeScript (