interface StandardHlsSettingsProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.StandardHlsSettingsProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#StandardHlsSettingsProps |
Java | software.amazon.awscdk.services.medialive.alpha.StandardHlsSettingsProps |
Python | aws_cdk.aws_medialive_alpha.StandardHlsSettingsProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป StandardHlsSettingsProps |
Properties for standard (video) HLS settings.
Example
declare const bucket: s3.IBucket;
declare const video: medialive.EncodeConfiguration;
declare const audio: medialive.EncodeConfiguration;
medialive.OutputGroupConfiguration.hls({
name: 'hls',
destinations: [medialive.OutputDestination.toBucket(bucket, 'live/stream')],
outputs: [
{
encodes: [video],
outputName: 'video',
hlsSettings: medialive.HlsSettings.standard({
m3u8Settings: medialive.M3u8Settings.of({
scte35Behavior: medialive.M3u8Scte35Behavior.PASSTHROUGH,
programNum: 1,
}),
}),
},
{
encodes: [audio],
outputName: 'audio',
hlsSettings: medialive.HlsSettings.audioOnly({
audioGroupId: 'program',
audioOnlyImage: medialive.FileLocation.fromBucket(bucket, 'art/cover.png'),
}),
},
],
});
Properties
| Name | Type | Description |
|---|---|---|
| audio | string | The audio GROUP-IDs used with this video output stream, comma-separated. |
| m3u8 | M3u8 | The M3U8 container settings. |
audioRenditionSets?
Type:
string
(optional, default: service default)
The audio GROUP-IDs used with this video output stream, comma-separated.
m3u8Settings?
Type:
M3u8
(optional, default: service defaults)
The M3U8 container settings.

.NET
Go
Java
Python
TypeScript (