During real-time communications, you can pre- and post-process the audio and video data and modify them for desired playback effects.
Agora provides the raw data function for you to process the audio data according to your scenarios. This function enables you to pre-process the captured audio signal before sending it to the encoder, or to post-process the decoded audio signal.
As of v3.4.5, you can call iOS/macOS APIs to capture raw audio data and process the data.
Call setAudioDataFrame to set the audio frame delegate. You can call this method either before or after joining the channel, but it only captures the audio data after the audio frame delegate is successfully registered.
After you successfully register the audio frame delegate, the SDK triggers the getRecordAudioParams, getPlaybackAudioParams, or getMixedAudioParams callbacks. You can set the desired audio data format in the return values of these callbacks.
The SDK triggers the getObservedAudioFramePosition and isMultipleChannelFrameWanted callbacks when capturing each audio frame. In the return values of these callbacks, you can set the audio observation positions and whether to capture the audio data from multiple channels.
According to the return values of getObservedAudioFramePosition and isMultipleChannelFrameWanted, the SDK triggers onRecordAudioFrame, onPlaybackAudioFrame, onPlaybackAudioFrameBeforeMixing/onPlaybackAudioFrameBeforeMixingEx, or onMixedAudioFrame callbacks to send you the captured raw audio data.
Process the captured audio data according to your scenarios. You can send the processed audio data with the onRecordAudioFrame, onPlaybackAudioFrame, onPlaybackAudioFrameBeforeMixing/onPlaybackAudioFrameBeforeMixingEx, or onMixedAudioFrame callbacks according to your scenarios.
Follow these steps to implement the raw data functions using C++ APIs:
Call the registerAudioFrameObserver method to register a audio observer object before joining the channel. You need to implement an IAudioFrameObserver class in this method.
After you successfully register the observer object, the SDK triggers the onRecordAudioFrame, onPlaybackAudioFrame, onPlaybackAudioFrameBeforeMixing, or onMixedAudioFrame callback to send the raw audio data at the set time interval.
After acquiring the raw data, you can process the captured raw data based on your scenario and send the processed data to the SDK via the callbacks mentioned in step 2.
To implement the preceding steps, you need to call C++ methods on iOS or macOS.
Code logics where both Objective-C and C++ methods are called should be implemented in an .mm file.
Ensure that you import the C++ header file at the beginning of the .mm file.
Before calling registerAudioFrameObserver, you need to call getNativeHandler in order to receive C++ callbacks.
The Agora SDK provides only C++ methods and callbacks for implementing the raw audio data function. Therefore, you need to call C++ methods on iOS or macOS to register an audio frame observer.
The following code should be implemented in the .mm file.
// Ensure that you call queryInterface in IMediaEngine to set the agora::AGORA_IID_MEDIA_ENGINE interface, or you cannot implement registerAudioFrameObserver
If you want to modify the audio sampling rate, use mode, number of channels, or sampling interval of the captured audio data, you can call the following methods:
// Swift
// Sets the audio data format returned in onRecordAudioFrame
After joining a channel, you can receive the captured audio data from the callbacks in the IAudioFrameObserver class. You can also use these callbacks to send the processed audio data back to the SDK.
// Swift
// Gets the raw audio data of the local user, and sends the data back to the SDK after processing
The raw audio data function is implemented by the C++ APIs of the SDK, and you need to mix the Objective-C and C++ methods in an .mm file. See AgoraMediaDataPlugin.mm for reference.
Ensure that you call getNativeHandler to get the C++ handle before calling the C++ method.
The raw audio data function is resource intensive and may affect performance.