Audio Stream Args
data class AudioStreamArgs(val bitrateBps: Output<Int>, val channelCount: Output<Int>? = null, val channelLayout: Output<List<String>>? = null, val codec: Output<String>? = null, val displayName: Output<String>? = null, val languageCode: Output<String>? = null, val mapping: Output<List<AudioMappingArgs>>? = null, val sampleRateHertz: Output<Int>? = null) : ConvertibleToJava<AudioStreamArgs>
Audio stream resource.
Constructors
Link copied to clipboard
fun AudioStreamArgs(bitrateBps: Output<Int>, channelCount: Output<Int>? = null, channelLayout: Output<List<String>>? = null, codec: Output<String>? = null, displayName: Output<String>? = null, languageCode: Output<String>? = null, mapping: Output<List<AudioMappingArgs>>? = null, sampleRateHertz: Output<Int>? = null)
Functions
Properties
Link copied to clipboard
Link copied to clipboard
A list of channel names specifying layout of the audio channels. This only affects the metadata embedded in the container headers, if supported by the specified format. The default is ["fl", "fr"]
. Supported channel names: - fl
- Front left channel - fr
- Front right channel - sl
- Side left channel - sr
- Side right channel - fc
- Front center channel - lfe
- Low frequency
Link copied to clipboard