interface Fmp4HlsSettingsProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.Fmp4HlsSettingsProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#Fmp4HlsSettingsProps |
Java | software.amazon.awscdk.services.medialive.alpha.Fmp4HlsSettingsProps |
Python | aws_cdk.aws_medialive_alpha.Fmp4HlsSettingsProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป Fmp4HlsSettingsProps |
Properties for fMP4 HLS settings.
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 m3u8NielsenId3Behavior: medialive_alpha.M3u8NielsenId3Behavior;
declare const m3u8TimedMetadataBehavior: medialive_alpha.M3u8TimedMetadataBehavior;
const fmp4HlsSettingsProps: medialive_alpha.Fmp4HlsSettingsProps = {
audioRenditionSets: 'audioRenditionSets',
nielsenId3Behavior: m3u8NielsenId3Behavior,
timedMetadataBehavior: m3u8TimedMetadataBehavior,
};
Properties
| Name | Type | Description |
|---|---|---|
| audio | string | The audio GROUP-IDs used with this video output stream, comma-separated. |
| nielsen | M3u8 | Nielsen ID3 passthrough behavior. |
| timed | M3u8 | Timed-metadata passthrough behavior. |
audioRenditionSets?
Type:
string
(optional, default: service default)
The audio GROUP-IDs used with this video output stream, comma-separated.
nielsenId3Behavior?
Type:
M3u8
(optional, default: service default)
Nielsen ID3 passthrough behavior.
timedMetadataBehavior?
Type:
M3u8
(optional, default: service default)
Timed-metadata passthrough behavior.

.NET
Go
Java
Python
TypeScript (