Interface EmbeddedCaptionSourceOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EmbeddedCaptionSourceOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:41.046Z")
@Stability(Experimental)
public interface EmbeddedCaptionSourceOptions
extends software.amazon.jsii.JsiiSerializable
(experimental) Options for an embedded (CEA-608/708) caption source.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.medialive.alpha.*;
Convert608To708 convert608To708;
Scte20Detection scte20Detection;
EmbeddedCaptionSourceOptions embeddedCaptionSourceOptions = EmbeddedCaptionSourceOptions.builder()
.convert608To708(convert608To708)
.scte20Detection(scte20Detection)
.source608ChannelNumber(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEmbeddedCaptionSourceOptionsstatic final classAn implementation forEmbeddedCaptionSourceOptions -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Convert608To708(experimental) Whether to upconvert 608 captions to 708.default Scte20Detection(experimental) SCTE-20 detection mode.default Number(experimental) The 608/708 channel number within the video track to extract captions from.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConvert608To708
(experimental) Whether to upconvert 608 captions to 708.Default: Convert608To708.DISABLED
-
getScte20Detection
(experimental) SCTE-20 detection mode.Default: Scte20Detection.OFF
-
getSource608ChannelNumber
(experimental) The 608/708 channel number within the video track to extract captions from.Default: - MediaLive service default
-
builder
-