Mux Stream Args
data class MuxStreamArgs(val container: Output<String>? = null, val elementaryStreams: Output<List<String>>? = null, val fileName: Output<String>? = null, val key: Output<String>? = null, val segmentSettings: Output<SegmentSettingsArgs>? = null) : ConvertibleToJava<MuxStreamArgs>
Multiplexing settings for output stream.
Properties
Link copied to clipboard
The container format. The default is mp4 Supported container formats: - ts - fmp4- the corresponding file extension is .m4s - mp4 - vtt See also: Supported input and output formats
Link copied to clipboard
List of ElementaryStream.keys multiplexed in this stream.
Link copied to clipboard
The name of the generated file. The default is MuxStream.key with the extension suffix corresponding to the MuxStream.container. Individual segments also have an incremental 10-digit zero-padded suffix starting from 0 before the extension, such as mux_stream0000000123.ts.
Link copied to clipboard
Segment settings for ts, fmp4 and vtt.