ElementaryStreamArgs

data class ElementaryStreamArgs(val audioStream: Output<AudioStreamArgs>? = null, val key: Output<String>? = null, val textStream: Output<TextStreamArgs>? = null, val videoStream: Output<VideoStreamArgs>? = null) : ConvertibleToJava<ElementaryStreamArgs>

Encoding of an input file such as an audio, video, or text track. Elementary streams must be packaged before mapping and sharing between different output formats.

Constructors

Link copied to clipboard
fun ElementaryStreamArgs(audioStream: Output<AudioStreamArgs>? = null, key: Output<String>? = null, textStream: Output<TextStreamArgs>? = null, videoStream: Output<VideoStreamArgs>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ElementaryStreamArgs

Properties

Link copied to clipboard
val audioStream: Output<AudioStreamArgs>? = null

Encoding of an audio stream.

Link copied to clipboard
val key: Output<String>? = null

A unique key for this elementary stream.

Link copied to clipboard
val textStream: Output<TextStreamArgs>? = null

Encoding of a text stream. For example, closed captions or subtitles.

Link copied to clipboard
val videoStream: Output<VideoStreamArgs>? = null

Encoding of a video stream.