INPUT_OBJECT

EncodingConfigurationAudioInput

A broadcast audio encoding configuration definition.

link GraphQL Schema definition

  • input EncodingConfigurationAudioInput {
  • # The codec. Valid values: AAC
  • codec: String!
  • # The target bitrate, in bits-per-second.
  • bitrate: Int!
  • # True if resampling the audio before encoding; false otherwise.
  • resampleEnable: Boolean
  • # The resampling sample rate.
  • resampleSampleRate: Int
  • # The resampling number of channels.
  • resampleChannels: Int
  • # The resampling source mask.
  • resampleChannelMaskSource: Int
  • # The resampling destination mask.
  • resampleChannelMaskDestination: Int
  • # A collection of parameters to control audio encoding.
  • parameters: [TranscoderParameterAudioInput]
  • }