EncodedAudioFrameInfo

Information of the encoded audio.

export class EncodedAudioFrameInfo {
  
  codec?: AudioCodecType;
  
  sampleRateHz?: number;
  
  samplesPerChannel?: number;
  
  numberOfChannels?: number;
  
  advancedSettings?: EncodedAudioFrameAdvancedSettings;
  
  captureTimeMs?: number;
}

Properties

codec
Audio codec specification: AudioCodecType.
sampleRateHz
Audio sample rate (Hz).
samplesPerChannel
Number of audio samples per channel.
numberOfChannels
Number of channels.
advancedSettings
This feature is not supported yet.
captureTimeMs
Unix timestamp (ms) when the external encoded video frame is captured.