interface HlsOutputDefinition
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.HlsOutputDefinition |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#HlsOutputDefinition |
Java | software.amazon.awscdk.services.medialive.alpha.HlsOutputDefinition |
Python | aws_cdk.aws_medialive_alpha.HlsOutputDefinition |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป HlsOutputDefinition |
Implements
Output
Output definition for an HLS output group.
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;
declare const h265PackagingType: medialive_alpha.H265PackagingType;
declare const hlsSettings: medialive_alpha.HlsSettings;
const hlsOutputDefinition: medialive_alpha.HlsOutputDefinition = {
encodes: [encodeConfiguration],
outputName: 'outputName',
// the properties below are optional
h265PackagingType: h265PackagingType,
hlsSettings: hlsSettings,
nameModifier: 'nameModifier',
segmentModifier: 'segmentModifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| encodes | Encode[] | The encode configurations to wire to this output. |
| output | string | The name of this output. |
| h265 | H265 | For H.265 video, whether to package as HEV1 or HVC1. |
| hls | Hls | The per-output HLS settings (standard, audio-only, fMP4, or frame-capture). |
| name | string | A string concatenated to the end of the destination file name. |
| segment | string | A string concatenated to the end of segment file names. |
encodes
Type:
Encode[]
The encode configurations to wire to this output.
outputName
Type:
string
The name of this output.
Must be unique across all outputs in the channel.
h265PackagingType?
Type:
H265
(optional, default: service default)
For H.265 video, whether to package as HEV1 or HVC1.
hlsSettings?
Type:
Hls
(optional, default: HlsSettings.standard() with service-default M3U8 settings)
The per-output HLS settings (standard, audio-only, fMP4, or frame-capture).
Use the
HlsSettings factory methods. Standard outputs additionally configure the M3U8 container
via HlsSettings.standard({ m3u8Settings }).
nameModifier?
Type:
string
(optional, default: service default)
A string concatenated to the end of the destination file name.
segmentModifier?
Type:
string
(optional, default: no segment modifier)
A string concatenated to the end of segment file names.

.NET
Go
Java
Python
TypeScript (