OBJECT

EncodingConfigurationAudio

The audio encoding configuration.

link GraphQL Schema definition

  • type EncodingConfigurationAudio {
  • # The audio encoding configuration ID.
  • id: ID!
  • # The codec. Valid value: 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: [TranscoderParameterAudio]
  • }