EncodedAudioFrameInfo

Information about encoded audio.

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

Properties

codec
Audio codec type: 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) of the captured external encoded video frame.