JSON_CustomAudioTypeInfoList

JSON message about encoding format of custom audio file

{
  "CustomAudioTypeInfoList":[{
/*encoding format list of custom audio file*/
    "CustomAudioTypeInfo":{
/*encoding format of custom audio file*/
      "channelID":1, 
/*required, channel ID*/
      "audioType":["OPUS", "G726"], 
/*required, string,audio encoding format type: OPUS, G726; now supports analog channels only*/
      "bitRate":64, 
/*required, int,bit rate, unit: kbps*/
      "samplingRate":48, 
/*optional, int,sampling rate, unit: k*/
      "samplingBits":10, 
/*optional, int,sampling bits, unit: bits*/
      "AudioChannelNum":1, 
/*optional, int,the number of audio channels*/
      "AudioFileMaxCapacity":10
/*optional, int,the maximum size of audio file, unit: MB*/
    }
  }]
}