interface DvbSdtSettings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.DvbSdtSettings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#DvbSdtSettings |
Java | software.amazon.awscdk.services.medialive.alpha.DvbSdtSettings |
Python | aws_cdk.aws_medialive_alpha.DvbSdtSettings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป DvbSdtSettings |
Settings for inserting a DVB Service Description Table (SDT).
Example
declare const video: medialive.EncodeConfiguration;
declare const audio: medialive.EncodeConfiguration;
medialive.OutputGroupConfiguration.udp({
name: 'udp_out',
destinations: [medialive.UdpOutputDestination.udp({ address: '203.0.113.5', port: 5000 })],
outputs: [{
encodes: [video, audio],
outputName: 'ts',
m2tsSettings: medialive.M2tsSettings.of({
bitrate: Bitrate.mbps(8),
rateMode: medialive.M2tsRateMode.VBR,
programNum: 1,
patInterval: Duration.millis(100),
pmtInterval: Duration.millis(100),
scte35Control: medialive.M2tsScte35Control.PASSTHROUGH,
dvbSdtSettings: {
outputSdt: medialive.DvbSdtOutputMode.SDT_MANUAL,
serviceName: 'My Service',
repInterval: Duration.millis(2000),
},
}),
}],
});
Properties
| Name | Type | Description |
|---|---|---|
| output | Dvb | The method of inserting SDT information into the output stream. |
| rep | Duration | The interval between instances of this table in the output transport stream. |
| service | string | The service name placed in the serviceDescriptor in the SDT (max 256 characters). |
| service | string | The service provider name placed in the serviceDescriptor in the SDT (max 256 characters). |
outputSdt?
Type:
Dvb
(optional, default: service default)
The method of inserting SDT information into the output stream.
repInterval?
Type:
Duration
(optional, default: service default)
The interval between instances of this table in the output transport stream.
serviceName?
Type:
string
(optional, default: no service name)
The service name placed in the serviceDescriptor in the SDT (max 256 characters).
serviceProviderName?
Type:
string
(optional, default: no service provider name)
The service provider name placed in the serviceDescriptor in the SDT (max 256 characters).

.NET
Go
Java
Python
TypeScript (