AgoraRtcEngineKit

The basic interface of the Agora SDK that implements the core functions of real-time communication.

AgoraRtcEngineKit provides the main methods that your app can call.

addVideoWatermark [1/2]

Adds a watermark image to the local video.

- (int)addVideoWatermark:(AgoraImage * _Nonnull)watermark

Details

Deprecated:
This method is deprecated. Use addVideoWatermark [2/2] instead.

This method adds a PNG watermark image to the local video stream in a live streaming session. Once the watermark image is added, all the users in the channel (CDN audience included) and the video capturing device can see and capture it. If you only want to add a watermark to the CDN live streaming, see descriptions in setLiveTranscoding.

Attention:
  • The URL descriptions are different for the local video and CDN live streaming: In a local video stream, URL refers to the absolute path of the added watermark image file in the local video stream. In a CDN live stream, URL refers to the URL address of the added watermark image in the CDN live streaming.
  • The source file of the watermark image must be in the PNG file format. If the width and height of the PNG file differ from your settings in this method, the PNG file will be cropped to conform to your settings.
  • The Agora SDK supports adding only one watermark image onto a local video or CDN live stream. The newly added watermark image replaces the previous one.

Parameters

watermark
The watermark image to be added to the local live streaming: AgoraImage.

Returns

  • 0: Success.
  • < 0: Failure.

addVideoWatermark [2/2]

Adds a watermark image to the local video.

- (int)addVideoWatermark:(NSURL* _Nonnull)url options:(WatermarkOptions* _Nonnull)options;

Details

This method adds a PNG watermark image to the local video in the live streaming. Once the watermark image is added, all the audience in the channel (CDN audience included), and the capturing device can see and capture it. The Agora SDK supports adding only one watermark image onto a local video or CDN live stream. The newly added watermark image replaces the previous one.

The watermark coordinates are dependent on the settings in the setVideoEncoderConfiguration method:
  • If the orientation mode of the encoding video (AgoraVideoOutputOrientationMode) is fixed landscape mode or the adaptive landscape mode, the watermark uses the landscape orientation.
  • If the orientation mode of the encoding video (AgoraVideoOutputOrientationMode) is fixed portrait mode or the adaptive portrait mode, the watermark uses the portrait orientation.
  • When setting the watermark position, the region must be less than the dimensions set in the setVideoEncoderConfiguration method; otherwise, the watermark image will be cropped.
Attention:
  • Ensure that calling this method after enableVideo.
  • If you only want to add a watermark to the media push, you can call this method or the setLiveTranscoding method.
  • This method supports adding a watermark image in the PNG file format only. Supported pixel formats of the PNG image are RGBA, RGB, Palette, Gray, and Alpha_gray.
  • If the dimensions of the PNG image differ from your settings in this method, the image will be cropped or zoomed to conform to your settings.
  • If you have enabled the local video preview by calling the startPreview method, you can use the visibleInPreview member to set whether or not the watermark is visible in the preview.
  • If you have enabled the mirror mode for the local video, the watermark on the local video is also mirrored. To avoid mirroring the watermark, Agora recommends that you do not use the mirror and watermark functions for the local video at the same time. You can implement the watermark function in your application layer.

Parameters

url
The local file path of the watermark image to be added. This method supports adding a watermark image from the local absolute or relative file path.
options
The options of the watermark image to be added. See WatermarkOptions.

Returns

  • 0: Success.
  • < 0: Failure.

adjustAudioMixingPlayoutVolume

Adjusts the volume of audio mixing for local playback.

- (int)adjustAudioMixingPlayoutVolume:(NSInteger)volume;

Details

Attention: Call this method after calling startAudioMixing [2/2] and receiving the audioMixingStateChanged(AgoraAudioMixingStateTypePlaying) callback.

Parameters

volume
The volume of audio mixing for local playback. The value ranges between 0 and 100 (default). 100 represents the original volume.

Returns

  • 0: Success.
  • < 0: Failure.

adjustAudioMixingPublishVolume

Adjusts the volume of audio mixing for publishing.

- (int)adjustAudioMixingPublishVolume:(NSInteger)volume;

Details

This method adjusts the volume of audio mixing for publishing (sending to other users).

Attention:

Call this method after calling startAudioMixing [2/2] and receiving the audioMixingStateChanged(AgoraAudioMixingStateTypePlaying) callback.

Parameters

volume
The volume of audio mixing for local playback. The value ranges between 0 and 100 (default). 100 represents the original volume.

Returns

  • 0: Success.
  • < 0: Failure.

adjustAudioMixingPublishVolume

Adjusts the volume of audio mixing for publishing.

- (int)adjustAudioMixingPublishVolume:(NSInteger)volume;

Details

This method adjusts the volume of audio mixing for publishing (sending to other users).

Attention:

Call this method after calling startAudioMixing [2/2] and receiving the audioMixingStateChanged(AgoraAudioMixingStateTypePlaying) callback.

Parameters

volume
The volume of audio mixing for local playback. The value ranges between 0 and 100 (default). 100 represents the original volume.

Returns

  • 0: Success.
  • < 0: Failure.

adjustAudioMixingVolume

Adjusts the volume during audio mixing.

- (int)adjustAudioMixingVolume:(NSInteger)volume;

Details

This method adjusts the audio mixing volume on both the local client and remote clients.

Attention:

Parameters

volume
Audio mixing volume. The value ranges between 0 and 100. The default value is 100, which means the original volume.

Returns

  • 0: Success.
  • < 0: Failure.

adjustCustomAudioPublishVolume

Adjusts the volume of the custom external audio source when it is published in the channel.

- (int)adjustCustomAudioPublishVolume:(NSInteger)trackId volume:(NSInteger)volume NS_SWIFT_NAME(adjustCustomAudioPublishVolume(_:volume:));

Details

Attention: Ensure you have called the createCustomAudioTrack method to create an external audio track before calling this method.

If you want to change the volume of the audio to be published, you need to call this method again.

Parameters

trackId
The audio track ID. Set this parameter to the custom audio track ID returned in createCustomAudioTrack.
volume
The volume of the audio source. The value can range from 0 to 100. 0 means mute; 100 means the original volume.

Returns

  • 0: Success.
  • < 0: Failure.

adjustPlaybackSignalVolume

Adjusts the playback signal volume of all remote users.

- (int)adjustPlaybackSignalVolume:(NSInteger)volume;

Details

Attention:
  • This method adjusts the playback volume that is the mixed volume of all remote users.
  • You can call this method either before or after joining a channel.

Parameters

volume
The volume of the user. The value range is [0,400].
  • 0: Mute.
    Note: If you only need to mute the audio signal, Agora recommends that you use muteRecordingSignal instead.
  • 100: (Default) The original volume.
  • 400: Four times the original volume (amplifying the audio signals by four times).

Returns

  • 0: Success.
  • < 0: Failure.

adjustRecordingSignalVolume

Adjusts the capturing signal volume.

- (int)adjustRecordingSignalVolume:(NSInteger)volume;

Details

Attention:

You can call this method either before or after joining a channel.

Parameters

volume
The volume of the user. The value range is [0,400].
  • 0: Mute.
    Note: If you only need to mute the audio signal, Agora recommends that you use muteRecordingSignal instead.
  • 100: (Default) The original volume.
  • 400: Four times the original volume (amplifying the audio signals by four times).

Returns

  • 0: Success.
  • < 0: Failure.

adjustUserPlaybackSignalVolume

Adjusts the playback signal volume of a specified remote user.

- (int)adjustUserPlaybackSignalVolume:(NSUInteger)uid volume:(int)volume;

Details

You can call this method to adjust the playback volume of a specified remote user. To adjust the playback volume of different remote users, call the method as many times, once for each remote user.

Attention:
  • Call this method after joining a channel.
  • The playback volume here refers to the mixed volume of a specified remote user.

Parameters

uid
The user ID of the remote user.
volume
Audio mixing volume. The value ranges between 0 and 100. The default value is 100, which means the original volume.

Returns

  • 0: Success.
  • < 0: Failure.

clearVideoWatermarks

Removes the watermark image from the video stream.

- (int)clearVideoWatermarks;

Returns

  • 0: Success.
  • < 0: Failure.

complain

Allows a user to complain about the call quality after a call ends.

- (int)complain:(NSString * _Nonnull)callId
    description:(NSString * _Nullable)description;

Details

This method allows users to complain about the quality of the call. Call this method after the user leaves the channel.

Parameters

callId
The current call ID. You can get the call ID by calling getCallId.
description
(Optional) A description of the call. The string length should be less than 800 bytes.

Returns

  • 0: Success.
  • < 0: Failure.
    • -2: The parameter is invalid.
    • - 3: The SDK is not ready. Possible reasons include the following:
      • The initialization of AgoraRtcEngineKit fails. Reinitialize the AgoraRtcEngineKit.
      • No user has joined the channel when the method is called. Please check your code logic.
      • The user has not left the channel when the rate or complain method is called. Please check your code logic.
      • The audio module is disabled. The program is not complete.

configRhythmPlayer

Configures the virtual metronome.

- (int)configRhythmPlayer:(AgoraRhythmPlayerConfig * _Nullable)config;

Details

After calling startRhythmPlayer, you can call this method to reconfigure the virtual metronome.

After successfully calling this method, the SDK triggers the didRhythmPlayerStateChanged callback locally to report the status of the virtual metronome.

Attention:
  • After enabling the virtual metronome, the SDK plays the specified audio effect file from the beginning, and controls the playback duration of each file according to beatsPerMinute you set in AgoraRhythmPlayerConfig. For example, if you set beatsPerMinute as 60, the SDK plays one beat every second. If the file duration exceeds the beat duration, the SDK only plays the audio within the beat duration.
  • By default, the sound of the virtual metronome is published in the channel. If you do not want the sound to be heard by the remote users, you can set publishRhythmPlayerTrack in AgoraRtcChannelMediaOptions as NO.

Parameters

config
The metronome configuration. See AgoraRhythmPlayerConfig.

Returns

  • 0: Success.
  • < 0: Failure.

sharedEngineWithAppId

Creates and initializes AgoraRtcEngineKit.

+ (instancetype _Nonnull)sharedEngineWithAppId:(NSString * _Nonnull)appId
                                      delegate:(id<AgoraRtcEngineDelegate> _Nullable)delegate;

Details

All called methods provided by the AgoraRtcEngineKit class are executed asynchronously. Agora recommends calling these methods in the same thread.

Attention:
  • Before calling other APIs, you must call this method to create the AgoraRtcEngineKit object.
  • You can create the AgoraRtcEngineKit instance either by calling this method or by calling sharedEngineWithConfig. The difference between sharedEngineWithConfig and this method is that sharedEngineWithConfig supports more configurations when creating the AgoraRtcEngineKit instance, for example, specifying the region for connection and setting the log files.
  • The SDK supports creating only one AgoraRtcEngineKit instance for an app.

Parameters

appId
The App ID issued by Agora for your project. Only users in apps with the same App ID can join the same channel and communicate with each other. An App ID can only be used to create one AgoraRtcEngineKit instance. To change your App ID, call destroy to destroy the current AgoraRtcEngineKit instance, and then create a new one.
delegate
The event handler for AgoraRtcEngineKit. See AgoraRtcEngineDelegate.

Returns

  • The AgoraRtcEngineKit instance, if the method call succeeds.
  • An error code, if the method call fails.
    • -1: A general error occurs (no specified reason).
    • -2: The parameter is invalid.
    • -7: The SDK is not initialized.
    • -22: The resource request failed. The SDK fails to allocate resources because your app consumes too much system resource or the system resources are insufficient.
    • -101: The App ID is invalid.

createCustomVideoTrack

Creates a customized video track.

- (unsigned int)createCustomVideoTrack;

Details

When you need to publish multiple custom captured videos in the channel, you can refer to the following steps:
  1. Call this method to create a video track and get the video track ID.
  2. In each channel's AgoraRtcChannelMediaOptions, set the customVideoTrackId parameter to the ID of the video track you want to publish, and set publishCustomVideoTrack to YES.
  3. If you call pushExternalVideoFrame, and specify customVideoTrackId as the videoTrackId set in step 2, you can publish the corresponding custom video source in multiple channels.

Returns

  • If the method call is successful, the video track ID is returned as the unique identifier of the video track.
  • If the method call fails, a negative value is returned.

createDataStream [1/2]

Creates a data stream.

- (int)createDataStream:(NSInteger * _Nonnull)streamId
               reliable:(BOOL)reliable
                ordered:(BOOL)ordered;

Details

Each user can create up to five data streams during the lifecycle of AgoraRtcEngineKit. The data stream will be destroyed when leaving the channel, and the data stream needs to be recreated if needed.

Attention:
  • Call this method after joining a channel.
  • Agora does not support setting reliable as YES and ordered as NO.

Parameters

streamId
An output parameter; the ID of the data stream created.
reliable
Whether or not the data stream is reliable:
  • YES: The recipients receive the data from the sender within five seconds. If the recipient does not receive the data within five seconds, the SDK triggers the didOccurStreamMessageErrorFromUid callback and returns an error code.
  • NO: There is no guarantee that the recipients receive the data stream within five seconds and no error message is reported for any delay or missing data stream.
ordered
Whether or not the recipients receive the data stream in the sent order:
  • YES: The recipients receive the data in the sent order.
  • NO: The recipients do not receive the data in the sent order.

Returns

  • 0: The data stream is successfully created.
  • < 0: Failure.

createDataStream [2/2]

Creates a data stream.

- (int)createDataStream:(NSInteger * _Nonnull)streamId
                  config:(AgoraDataStreamConfig * _Nonnull)config;

Details

Creates a data stream. Each user can create up to five data streams in a single channel.

Compared with createDataStream [1/2], this method does not support data reliability. If a data packet is not received five seconds after it was sent, the SDK directly discards the data.

Parameters

streamId
An output parameter; the ID of the data stream created.
config
The configurations for the data stream. See AgoraDataStreamConfig.

Returns

  • 0: The data stream is successfully created.
  • < 0: Failure.

delegate

Sets and retrieves AgoraRtcEngineDelegate.

@property(nonatomic, weak) id<AgoraRtcEngineDelegate> _Nullable delegate;

Details

The SDK uses AgoraRtcEngineDelegate to inform the app on engine runtime events. All methods defined in the delegate are optional implementation methods.

destroyCustomVideoTrack

Destroys the specified video track.

- (int)destroyCustomVideoTrack:(NSUInteger)videoTrackId;

Parameters

position
The video track ID returned by calling the createCustomVideoTrack method.

Returns

  • 0: Success.
  • < 0: Failure.

disableAudio

Disables the audio module.

- (int)disableAudio;

Details

Attention:
  • This method disables the internal engine and can be called anytime after initialization. It is still valid after one leaves channel.
  • This method resets the internal engine and takes some time to take effect. Agora recommends using the following API methods to control the audio modules separately:

Returns

  • 0: Success.
  • < 0: Failure.

disableAudioSpectrumMonitor

Disables audio spectrum monitoring.

- (int)disableAudioSpectrumMonitor;

Details

After calling enableAudioSpectrumMonitor, if you want to disable audio spectrum monitoring, you can call this method.

Attention:

You can call this method either before or after joining a channel.

Returns

  • 0: Success.
  • < 0: Failure.

disableVideo

Disables the video module.

- (int)disableVideo;

Details

This method can be called before joining a channel or during a call to disable the video module. If it is called before joining a channel, an audio call starts when you join the channel; if called during a call, a video call switches to an audio call. Call enableVideo to enable the video module.

A successful call of this method triggers the didVideoEnabled (NO) callback on the remote client.

Attention:
  • This method affects the internal engine and can be called after leaving the channel.
  • This method resets the internal engine and thus might takes some time to take effect. Agora recommends using the following APIs to control the video modules separately:

Returns

  • 0: Success.
  • < 0: Failure.

enableAudio

Enables the audio module.

- (int)enableAudio;

Details

The audio mode is enabled by default.

Attention:
  • This method enables the internal engine and can be called anytime after initialization. It is still valid after one leaves channel.
  • This method enables the whole audio module and thus might take a while to take effect. Agora recommends using the following APIs to control the audio module separately:

Returns

  • 0: Success.
  • < 0: Failure.

enableAudioSpectrumMonitor

Turns on audio spectrum monitoring.

- (int)enableAudioSpectrumMonitor:(int)intervalInMS;

Details

If you want to obtain the audio spectrum data of local or remote users, you can register the audio spectrum observer and enable audio spectrum monitoring.

Attention:

You can call this method either before or after joining a channel.

Parameters

intervalInMS

The interval (in milliseconds) at which the SDK triggers the onLocalAudioSpectrum and onRemoteAudioSpectrum callbacks. The default value is 100. Do not set this parameter to a value less than 10, otherwise calling this method would fail.

Returns

  • 0: Success.
  • < 0: Failure.
    • -2: Invalid parameters.

enableAudioVolumeIndication

Enables the reporting of users' volume indication.

- (int)enableAudioVolumeIndication:(NSInteger)interval
                            smooth:(NSInteger)smooth
                            reportVad:(BOOL)reportVad;

Details

This method enables the SDK to regularly report the volume information to the app of the local user who sends a stream and remote users (three users at most) whose instantaneous volumes are the highest. Once you call this method and users send streams in the channel, the SDK triggers the reportAudioVolumeIndicationOfSpeakers callback at the time interval set in this method.

Attention: You can call this method either before or after joining a channel.

Parameters

interval
Sets the time interval between two consecutive volume indications:
  • ≤ 0: Disables the volume indication.
  • > 0: Time interval (ms) between two consecutive volume indications. The lowest value is 50.
smooth
The smoothing factor that sets the sensitivity of the audio volume indicator. The value ranges between 0 and 10. The recommended value is 3. The greater the value, the more sensitive the indicator.
reportVad
  • YES: Enables the voice activity detection of the local user. Once it is enabled, the vad parameter of the reportAudioVolumeIndicationOfSpeakers callback reports the voice activity status of the local user.
  • NO: (Default) Disables the voice activity detection of the local user. Once it is disabled, the vad parameter of the reportAudioVolumeIndicationOfSpeakers callback does not report the voice activity status of the local user, except for the scenario where the engine automatically detects the voice activity of the local user.

Returns

  • 0: Success.
  • < 0: Failure.

enableContentInspect

Enables or disables video screenshot and upload.

- (int)enableContentInspect:(BOOL)enabled config:(AgoraContentInspectConfig* _Nonnull)config;

Details

When video screenshot and upload function is enabled, the SDK takes screenshots and upload videos sent by local users based on the type and frequency of the module you set in AgoraContentInspectConfig. After video screenshot and upload, the Agora server sends the callback notification to your app server in HTTPS requests and sends all screenshots to the third-party cloud storage service.

Note:
  • Before calling this method, ensure that the video screenshot upload service has been activated.
  • This method relies on the video screenshot and upload dynamic library AgoraContentInspectExtension.xcframework. If the dynamic library is deleted, the function cannot be enabled normally.

Parameters

enabled
Whether to enable video screenshot and upload:
  • YES: Enables video screenshot and upload.
  • NO: Disables video screenshot and upload.
config
Configuration of video screenshot and upload. See AgoraContentInspectConfig.

Returns

  • 0: Success.
  • < 0: Failure.

enableDualStreamMode [1/2]

Enables or disables dual-stream mode on the sender side.

- (int)enableDualStreamMode:(BOOL)enabled;

Details

Deprecated:
This method is deprecated as of v4.2.0. Use setDualStreamMode [1/2] instead.
Dual streams are a pairing of a high-quality video stream and a low-quality video stream:
  • High-quality video stream: High bitrate, high resolution.
  • Low-quality video stream: Low bitrate, low resolution.

After you enable dual-stream mode, you can call setRemoteVideoStream to choose to receive either the high-quality video stream or the low-quality video stream on the subscriber side.

Note:
  • This method is applicable to all types of streams from the sender, including but not limited to video streams collected from cameras, screen sharing streams, and custom-collected video streams.
  • If you need to enable dual video streams in a multi-channel scenario, you can call the enableDualStreamModeEx method.
  • You can call this method either before or after joining a channel.

Parameters

enabled
Whether to enable dual-stream mode:
  • YES: Enable dual-stream mode.
  • NO: (Default) Disable dual-stream mode.

Returns

  • 0: Success.
  • < 0: Failure.

enableDualStreamMode [2/2]

Enables or disables the dual-stream mode on the sender and sets the low-quality video stream.

- (int)enableDualStreamMode:(BOOL)enabled
                        streamConfig:(AgoraSimulcastStreamConfig* _Nonnull)streamConfig;

Details

Deprecated:
This method is deprecated as of v4.2.0. Use setDualStreamMode [2/2] instead.
You can call this method to enable or disable the dual-stream mode on the publisher side. Dual streams are a pairing of a high-quality video stream and a low-quality video stream:
  • High-quality video stream: High bitrate, high resolution.
  • Low-quality video stream: Low bitrate, low resolution.

After you enable dual-stream mode, you can call setRemoteVideoStream to choose to receive either the high-quality video stream or the low-quality video stream on the subscriber side.

Note:
  • This method is applicable to all types of streams from the sender, including but not limited to video streams collected from cameras, screen sharing streams, and custom-collected video streams.
  • If you need to enable dual video streams in a multi-channel scenario, you can call the enableDualStreamModeEx method.
  • You can call this method either before or after joining a channel.

Parameters

enabled
Whether to enable dual-stream mode:
  • YES: Enable dual-stream mode.
  • NO: (Default) Disable dual-stream mode.
streamConfig

The configuration of the low-quality video stream. See AgoraSimulcastStreamConfig.

Returns

  • 0: Success.
  • < 0: Failure.

enableEncryption

Enables or disables the built-in encryption.

- (int)enableEncryption:(bool)enabled encryptionConfig:(AgoraEncryptionConfig * _Nonnull)config;

Details

In scenarios requiring high security, Agora recommends calling this method to enable the built-in encryption before joining a channel.

All users in the same channel must use the same encryption mode and encryption key. After the user leaves the channel, the SDK automatically disables the built-in encryption. To enable the built-in encryption, call this method before the user joins the channel again.

Attention: If you enable the built-in encryption, you cannot use the Media Push function.

Parameters

enabled
Whether to enable built-in encryption:
  • YES: Enable the built-in encryption.
  • NO: Disable the built-in encryption.
config
Built-in encryption configurations. See AgoraEncryptionConfig.

Returns

  • 0: Success.
  • < 0: Failure.
    • -2: An invalid parameter is used. Set the parameter with a valid value.
    • -4: The built-in encryption mode is incorrect or the SDK fails to load the external encryption library. Check the enumeration or reload the external encryption library.
    • -7: The SDK is not initialized. Initialize the AgoraRtcEngineKit instance before calling this method.

enableExtensionWithVendor

Enables or disables extensions.

- (int)enableExtensionWithVendor:(NSString * __nonnull)provider extension:(NSString * __nonnull)extension enabled:(BOOL)enabled;
                

Details

To call this method, call it immediately after initializing the AgoraRtcEngineKit object.

Note:
  • If you want to enable multiple extensions, you need to call this method multiple times.
  • The data processing order of different extensions in the SDK is determined by the order in which the extensions are enabled. That is, the extension that is enabled first will process the data first.

Parameters

provider
The name of the extension provider.
extension
The name of the extension.
enabled
Whether to enable the extension:
  • YES: Enable the extension.
  • NO: Disable the extension.

Returns

  • 0: Success.
  • < 0: Failure.
    • -3: The extension library is not loaded. Agora recommends that you check the storage location or the name of the dynamic library.

enableFaceDetection

Enables or disables face detection for the local user.

- (int)enableFaceDetection:(bool)enable NS_SWIFT_NAME(enableFaceDetection(_:));

Details

You can call this method either before or after joining a channel.

Once face detection is enabled, the SDK triggers the facePositionDidChangeWidth callback to report the face information of the local user, which includes the following:
  • The width and height of the local video.
  • The position of the human face in the local view.
  • The distance between the human face and the screen.

This method needs to be called after the camera is started (for example, by calling startPreview or joinChannelByToken [2/4]).

Parameters

enable
Whether to enable face detection for the local user:
  • YES: Enable face detection.
  • NO: (Default) Disable face detection.

Returns

  • 0: Success.
  • < 0: Failure.

enableInEarMonitoring [1/2]

Enables in-ear monitoring.

- (int)enableInEarMonitoring:(BOOL)enabled;

Details

This method enables or disables in-ear monitoring.

Attention:
  • Users must use earphones (wired or Bluetooth) to hear the in-ear monitoring effect.
  • You can call this method either before or after joining a channel.

Parameters

enabled
Enables in-ear monitoring.
  • YES: Enables in-ear monitoring.
  • NO: (Default) Disables in-ear monitoring.

Returns

  • 0: Success.
  • < 0: Failure.
    • - 8: Make sure the current audio routing is Bluetooth or headset.

enableInEarMonitoring [2/2]

Enables in-ear monitoring.

- (int)enableInEarMonitoring:(BOOL)enabled includeAudioFilters:(AgoraEarMonitoringFilterType)includeAudioFilters;

Details

This method enables or disables in-ear monitoring.

Attention:
  • Users must use earphones (wired or Bluetooth) to hear the in-ear monitoring effect.
  • You can call this method either before or after joining a channel.

Parameters

enabled
Enables or disables in-ear monitoring.
  • YES: Enables in-ear monitoring.
  • NO: (Default) Disables in-ear monitoring.
includeAudioFilters
The audio filter of in-ear monitoring: See AgoraEarMonitoringFilterType.

Returns

  • 0: Success.
  • < 0: Failure.
    • - 8: Make sure the current audio routing is Bluetooth or headset.

enableInstantMediaRendering

Enables audio and video frame instant rendering.

- (int)enableInstantMediaRendering NS_SWIFT_NAME(enableInstantMediaRendering());

Details

Since
v4.1.1
After successfully calling this method, the SDK enables the instant frame rendering mode, which can speed up the first frame rendering speed after the user joins the channel.
Attention:
  • Once the instant rendering function is enabled, it can only be canceled by calling the destroy method to destroy the AgoraRtcEngineKit object.
  • In this mode, the SDK uses Agora's custom encryption algorithm to shorten the time required to establish transmission links, and the security is reduced compared to the standard DTLS (Datagram Transport Layer Security). If the application scenario requires higher security standards, Agora recommends that you do not use this method.

Applicable scenarios

Agora recommends that you enable this mode for the audience in a live streaming scenario.

Returns

  • 0: Success.
  • < 0: Failure.

enableLocalAudio

Enables or disables the local audio capture.

- (int)enableLocalAudio:(BOOL)enabled;

Details

The audio function is enabled by default when users joining a channel. This method disables or re-enables the local audio function to stop or restart local audio capturing.

This method does not affect receiving or playing the remote audio streams, and enableLocalAudio(NO) is applicable to scenarios where the user wants to receive remote audio streams without sending any audio stream to other users in the channel.

Once the local audio function is disabled or re-enabled, the SDK triggers the localAudioStateChanged callback, which reports AgoraAudioLocalStateStopped(0) or AgoraAudioLocalStateRecording(1).
Attention:
  • The difference between this method and muteLocalAudioStream are as follow:
    • enableLocalAudio: Disables or re-enables the local audio capturing and processing. If you disable or re-enable local audio capturing using the enableLocalAudio method, the local user might hear a pause in the remote audio playback.
    • muteLocalAudioStream: Sends or stops sending the local audio streams.
  • You can call this method either before or after joining a channel. Calling it before joining a channel only sets the device state, and it takes effect immediately after you join the channel.

Parameters

enabled
  • YES: (Default) Re-enable the local audio function, that is, to start the local audio capturing device (for example, the microphone).
  • NO: Disable the local audio function, that is, to stop local audio capturing.

Returns

  • 0: Success.
  • < 0: Failure.

enableLocalVideo

Enables/Disables the local video capture.

- (int)enableLocalVideo:(BOOL)enabled;

Details

This method disables or re-enables the local video capture, and does not affect receiving the remote video stream.

After calling enableVideo, the local video capture is enabled by default. You can call enableLocalVideo(NO) to disable the local video capture. If you want to re-enable the local video capture, call enableLocalVideo(YES).

After the local video capturer is successfully disabled or re-enabled, the SDK triggers the remoteVideoStateChangedOfUid callback on the remote client.

Attention:
  • You can call this method either before or after joining a channel.
  • This method enables the internal engine and is valid after leaving the channel.

Parameters

enabled

Whether to enable the local video capture.

  • YES: (Default) Enable the local video capture.
  • NO: Disable the local video capture. Once the local video is disabled, the remote users cannot receive the video stream of the local user, while the local user can still receive the video streams of remote users. When set to NO, this method does not require a local camera.

Returns

  • 0: Success.
  • < 0: Failure.

enableMainQueueDispatch

Enables or disables dispatching delegate methods to the main queue.

- (int)enableMainQueueDispatch:(BOOL)enabled;

Parameters

Returns

enableMultiCamera

Enables or disables multi-camera capture.

- (int)enableMultiCamera:(BOOL)enabled config:(AgoraCameraCapturerConfiguration* _Nullable)config NS_SWIFT_NAME(enableMultiCamera(_:config:));

Details

Since
v4.1.0
In scenarios where there are existing cameras to capture video, Agora recommends that you use the following steps to capture and publish video with multiple cameras:
  1. Call this method to enable multi-channel camera capture.
  2. Call startPreview to start the local video preview.
  3. Call startCameraCapture, and set sourceType to start video capture with the second camera.
  4. Call joinChannelExByToken [1/2], and set publishSecondaryCameraTrack to YES to publish the video stream captured by the second camera in the channel.
If you want to disable multi-channel camera capture, use the following steps:
  1. Call stopCameraCapture.
  2. Call this method with enabled set to NO.
Note:
You can call this method before and after startPreview to enable multi-camera capture:
  • If it is enabled before startPreview, the local video preview shows the image captured by the two cameras at the same time.
  • If it is enabled after startPreview, the SDK stops the current camera capture first, and then enables the primary camera and the second camera. The local video preview appears black for a short time, and then automatically returns to normal.

When using this function, ensure that the system version is 13.0 or later.

The minimum iOS device types that support multi-camera capture are as follows:
  • iPhone XR
  • iPhone XS
  • iPhone XS Max
  • iPad Pro 3rd generation and later

Parameters

enabled
Whether to enable multi-camera video capture mode:
  • YES: Enable multi-camera capture mode; the SDK uses multiple cameras to capture video.
  • NO: Disable multi-camera capture mode; the SDK uses a single camera to capture video.
config
Capture configuration for the second camera. See AgoraCameraCapturerConfiguration.

Returns

  • 0: Success.
  • < 0: Failure.

enableSoundPositionIndication

Enables or disables stereo panning for remote users.

- (int)enableSoundPositionIndication:(BOOL)enabled;

Details

Ensure that you call this method before joining a channel to enable stereo panning for remote users so that the local user can track the position of a remote user by calling setRemoteVoicePosition.

Parameters

enabled
Whether to enable stereo panning for remote users:
  • YES: Enable stereo panning.
  • NO: Disable stereo panning.

Returns

  • 0: Success.
  • < 0: Failure.

enableSpatialAudio

Enables or disables the spatial audio effect.

- (int)enableSpatialAudio:(BOOL)enabled;

Details

After enabling the spatial audio effect, you can call setRemoteUserSpatialAudioParams to set the spatial audio effect parameters of the remote user.

Note:
  • You can call this method either before or after joining a channel.
  • This method relies on the spatial audio dynamic library AgoraSpatialAudioExtension.xcframework. If the dynamic library is deleted, the function cannot be enabled normally.

Parameters

enabled
Whether to enable the spatial audio effect:
  • YES: Enable the spatial audio effect.
  • NO: Disable the spatial audio effect.

Returns

  • 0: Success.
  • < 0: Failure.

enableVideo

Enables the video module.

- (int)enableVideo;

Details

Call this method either before joining a channel or during a call. If this method is called before joining a channel, the call starts in the video mode; if called during a call, the audio call switches to a video call. Call disableVideo to disable the video mode.

A successful call of this method triggers the remoteVideoStateChangedOfUid callback on the remote client.

Attention:
  • This method enables the internal engine and is valid after leaving the channel.
  • This method resets the internal engine and thus might takes some time to take effect. Agora recommends using the following APIs to control the video modules separately:

Returns

  • 0: Success.
  • < 0: Failure.

enableVideoImageSource

Sets whether to replace the current video feeds with images when publishing video streams.

- (int) enableVideoImageSource:(BOOL)enable
                       options:(AgoraImageTrackOptions *_Nullable)options;

Details

Attention: Agora recommends that you call this method after joining a channel.

When publishing video streams, you can call this method to replace the current video feeds with custom images.

Once you enable this function, you can select images to replace the video feeds through the AgoraImageTrackOptions parameter. If you disable this function, the remote users see the video feeds that you publish.

Parameters

enable
Whether to replace the current video feeds with custom images:
  • YES: Replace the current video feeds with custom images.
  • NO: (Default) Do not replace the current video feeds with custom images.
options
Image configurations. See AgoraImageTrackOptions.

Returns

  • 0: Success.
  • < 0: Failure.

enableVirtualBackground

Enables/Disables the virtual background.

- (int)enableVirtualBackground:(BOOL)enable backData:(AgoraVirtualBackgroundSource* _Nullable)backData segData:(AgoraSegmentationProperty* _Nullable)segData NS_SWIFT_NAME(enableVirtualBackground(_:backData:segData:));

Details

The virtual background feature enables the local user to replace their original background with a static image, dynamic video, blurred background, or portrait-background segmentation to achieve picture-in-picture effect. Once the virtual background feature is enabled, all users in the channel can see the custom background.

Call this method before calling enableVideo or startPreview.

Attention:
  • This feature requires high performance devices. Agora recommends that you implement it on devices equipped with the following chips:
    • Devices with an A9 chip and better, as follows:
      • iPhone 6S and later
      • iPad Air 3rd generation and later
      • iPad 5th generation and later
      • iPad Pro 1st generation and later
      • iPad mini 5th generation and later
  • Agora recommends that you use this feature in scenarios that meet the following conditions:
    • A high-definition camera device is used, and the environment is uniformly lit.
    • There are few objects in the captured video. Portraits are half-length and unobstructed. Ensure that the background is a solid color that is different from the color of the user's clothing.
  • This method relies on the virtual background dynamic library AgoraVideoSegmentationExtension.xcframework. If the dynamic library is deleted, the function cannot be enabled normally.

Parameters

enable
Whether to enable virtual background:
  • YES: Enable virtual background.
  • NO: Disable virtual background.
backData
The custom background. See AgoraVirtualBackgroundSource. To adapt the resolution of the custom background image to that of the video captured by the SDK, the SDK scales and crops the custom background image while ensuring that the content of the custom background image is not distorted.
segData
Processing properties for background images. See AgoraSegmentationProperty.

Returns

  • 0: Success.
  • < 0: Failure.
    • -1: The custom background image does not exist. Check the value of source in AgoraVirtualBackgroundSource.
    • -2: The color format of the custom background image is invalid. Check the value of color in AgoraVirtualBackgroundSource.
    • -3: The device does not support virtual background.

enableWebSdkInteroperability

Enables interoperability with the Agora Web SDK (applicable only in the live streaming scenarios).

- (int)enableWebSdkInteroperability:(BOOL)enabled;

Details

Deprecated:
The SDK automatically enables interoperability with the Web SDK, so you no longer need to call this method.

You can call this method to enable or disable interoperability with the Agora Web SDK. If a channel has Web SDK users, ensure that you call this method, or the video of the Native user will be a black screen for the Web user.

This method is only applicable in live streaming scenarios, and interoperability is enabled by default in communication scenarios.

Parameters

enabled
Whether to enable interoperability:
  • YES: Enable interoperability.
  • NO: (Default) Disable interoperability.

Returns

  • 0: Success.
  • < 0: Failure.

getAudioMixingCurrentPosition

Retrieves the playback position (ms) of the music file.

- (int)getAudioMixingCurrentPosition;

Details

Retrieves the playback position (ms) of the audio.

Attention:
  • You need to call this method after calling startAudioMixing [2/2] and receiving the audioMixingStateChanged(AgoraAudioMixingStateTypePlaying) callback.
  • If you need to call getAudioMixingCurrentPosition multiple times, ensure that the time interval between calling this method is more than 500 ms.

Returns

  • ≥ 0: The current playback position (ms) of the audio mixing, if this method call succeeds. 0 represents that the current music file does not start playing.
  • < 0: Failure.

getAudioMixingDuration

Retrieves the duration (ms) of the music file.

- (int)getAudioMixingDuration;

Details

Retrieves the total duration (ms) of the audio.

Attention:

You need to call this method after calling startAudioMixing [2/2] and receiving the audioMixingStateChanged(AgoraAudioMixingStateTypePlaying) callback.

Returns

  • ≥ 0: The audio mixing duration, if this method call succeeds.
  • < 0: Failure.

getAudioMixingPlayoutVolume

Retrieves the audio mixing volume for local playback.

- (int)getAudioMixingPlayoutVolume;

Details

This method helps troubleshoot audio volume‑related issues.

Attention:

You need to call this method after calling startAudioMixing [2/2] and receiving the audioMixingStateChanged(AgoraAudioMixingStateTypePlaying) callback.

Returns

  • ≥ 0: The audio mixing volume, if this method call succeeds. The value range is [0,100].
  • < 0: Failure.

getAudioMixingPublishVolume

Retrieves the audio mixing volume for publishing.

- (int)getAudioMixingPublishVolume;

Details

This method helps troubleshoot audio volume‑related issues.

Attention: You need to call this method after calling startAudioMixing [2/2] and receiving the audioMixingStateChanged(AgoraAudioMixingStateTypePlaying) callback.

Returns

  • ≥ 0: The audio mixing volume, if this method call succeeds. The value range is [0,100].
  • < 0: Failure.

getAudioTrackCount

Gets the index of audio tracks of the current music file.

- (int)getAudioTrackCount;

Details

Note:
  • You need to call this method after calling startAudioMixing [2/2] and receiving the audioMixingStateChanged(AgoraAudioMixingStateTypePlaying) callback.

Returns

  • The SDK returns the index of the audio tracks if the method call succeeds.
  • < 0: Failure.

getCallId

Retrieves the call ID.

- (NSString * _Nullable)getCallId;

Details

When a user joins a channel on a client, a callId is generated to identify the call from the client. Some methods, such as rate and complain, must be called after the call ends to submit feedback to the SDK. These methods require the callId parameter.

Attention: Call this method after joining a channel.

Returns

The current call ID.

getConnectionState

Gets the current connection state of the SDK.

- (AgoraConnectionState)getConnectionState;

Details

You can call this method either before or after joining a channel.

Returns

The current connection state. See AgoraConnectionState.

getCurrentMonotonicTimeInMs

Gets the current Monotonic Time of the SDK.

- (int64_t)getCurrentMonotonicTimeInMs NS_SWIFT_NAME(getCurrentMonotonicTimeInMs());

Details

Since
v4.2.0

Monotonic Time refers to a monotonically increasing time series whose value increases over time. The unit is milliseconds.

In custom video capture and custom audio capture scenarios, in order to ensure audio and video synchronization, Agora recommends that you call this method to obtain the current Monotonic Time of the SDK, and then pass this value into the timestamp parameter in the captured video frame (AgoraOutputVideoFrame) and audio frame (AgoraAudioFrame).

Returns

  • ≥0: The method call is successful, and returns the current Monotonic Time of the SDK (in milliseconds).
  • < 0: Failure.

getEffectCurrentPosition

Retrieves the playback position of the audio effect file.

- (int)getEffectCurrentPosition:(int)soundId NS_SWIFT_NAME(getEffectCurrentPosition(_:));
- (int)getEffectCurrentPosition:(int)soundId;

Details

Attention: Call this method after the playEffect [3/3] method.

Parameters

soundId
The audio effect ID. The ID of each audio effect file is unique.

Returns

  • The playback position (ms) of the specified audio effect file, if the method call succeeds.
  • < 0: Failure.

getEffectDuration

Retrieves the duration of the audio effect file.

- (int)getEffectDuration:(NSString* _Nonnull)filePath NS_SWIFT_NAME(getEffectDuration(_:));

Details

Attention: Call this method after joining a channel.

Parameters

filePath
File path:
  • iOS or macOS: The absolute path or URL address (including the suffixes of the filename) of the audio effect file. For example: /var/mobile/Containers/Data/audio.mp4.

Returns

  • The total duration (ms) of the specified audio effect file, if the method call succeeds.
  • < 0: Failure.

getEffectsVolume

Retrieves the volume of the audio effects.

- (int)getEffectsVolume;

Details

The volume is an integer ranging from 0 to 100. The default value is 100, which means the original volume.

Attention: Call this method after playEffect [3/3].

Returns

  • Volume of the audio effects, if this method call succeeds.
  • < 0: Failure.

getErrorDescription

Gets the warning or error description.

+ (NSString* _Nonnull)getErrorDescription: (NSInteger)error;

Parameters

error
The error code or warning code reported by the SDK.

Returns

The specific error or warning description.

getExtensionPropertyWithVendor [1/2]

Gets detailed information on the extensions.

- (NSString * _Nullable)getExtensionPropertyWithVendor:(NSString * __nonnull)provider
                                             extension:(NSString * __nonnull)extension
                                                   key:(NSString * __nonnull)key;

Details

Parameters

provider
The name of the extension provider.
extension
The name of the extension.
key
The key of the extension.

Returns

  • The extension information, if the method call succeeds.
  • An empty string, if the method call fails.

getExtensionPropertyWithVendor [2/2]

Gets detailed information on the extensions.

- (NSString * _Nullable)getExtensionPropertyWithVendor:(NSString * __nonnull)provider
                                             extension:(NSString * __nonnull)extension
                                                   key:(NSString * __nonnull)key
                                            sourceType:(AgoraMediaSourceType)sourceType;

Details

Parameters

provider
The name of the extension provider.
extension
The name of the extension.
key
The key of the extension.
sourceType
Source type of the extension. See AgoraMediaSourceType.

Returns

  • The extension information, if the method call succeeds.
  • An empty string, if the method call fails.

createMediaPlayerCacheManager

Creates one AgoraRtcMediaPlayerCacheManagerProtocol instance.

- (id<AgoraRtcMediaPlayerCacheManagerProtocol> _Nullable)createMediaPlayerCacheManager;

Details

When you successfully call this method, the SDK returns a media player cache manager instance. The cache manager is a singleton pattern. Therefore, multiple calls to this method returns the same instance.

Attention:

Make sure the AgoraRtcEngineKit is initialized before you call this method.

Returns

The AgoraRtcMediaPlayerCacheManagerProtocol instance.

getNativeHandle

Gets the C++ handle of the Native SDK.

- (void* _Nullable)getNativeHandle;

Details

This method retrieves the C++ handle of the SDK, which is used for registering the audio and video frame observer.

Returns

The native handle of the SDK.

getNetworkType

Gets the type of the local network connection.

- (int) getNetworkType;

Details

Since
v4.0.1

You can use this method to get the type of network in use at any stage.

Note: You can call this method either before or after joining a channel.

Returns

  • ≥ 0: The method call is successful, and the local network connection type is returned.
    • 0: The SDK disconnects from the network.
    • 1: The network type is LAN.
    • 2: The network type is Wi-Fi (including hotspots).
    • 3: The network type is mobile 2G.
    • 4: The network type is mobile 3G.
    • 5: The network type is mobile 4G.
    • 6: The network type is mobile 5G.
  • < 0: The method call failed with an error code.
    • -1: The network type is unknown.

getNtpWallTimeInMs

Gets the current NTP (Network Time Protocol) time.

- (uint64_t)getNtpWallTimeInMs;

Details

Since
v4.2.0

In the real-time chorus scenario, especially when the downlink connections are inconsistent due to network issues among multiple receiving ends, you can call this method to obtain the current NTP time as the reference time, in order to align the lyrics and music of multiple receiving ends and achieve chorus synchronization.

Returns

The Unix timestamp (ms) of the current NTP time.

getUserInfoWithUserId

Gets the user information by passing in the user ID.

- (AgoraUserInfo* _Nullable)getUserInfoByUid:(NSUInteger)uid withError:(AgoraErrorCode* _Nullable)error;

Details

After a remote user joins the channel, the SDK gets the user ID and account of the remote user, caches them in a mapping table object, and triggers the didUserInfoUpdatedWithUserId callback on the local client. After receiving the callback, you can call this method to get the user account of the remote user from the AgoraUserInfo object by passing in the user ID.

Parameters

uid
The user ID.
error
Error code.

Returns

  • A pointer to the AgoraUserInfo instance, if the method call succeeds.
  • If the call fails, returns nil.

getUserInfoWithUserAccount

Gets the user information by passing in the user account.

- (AgoraUserInfo* _Nullable)getUserInfoByUserAccount:(NSString* _Nonnull)userAccount withError:(AgoraErrorCode* _Nullable)error;

Details

After a remote user joins the channel, the SDK gets the user ID and account of the remote user, caches them in a mapping table object, and triggers the didUserInfoUpdatedWithUserId callback on the local client. After receiving the callback, you can call this method to get the user account of the remote user from the AgoraUserInfo object by passing in the user ID.

Parameters

userAccount
The user account.
error
Error code.

Returns

  • A pointer to the AgoraUserInfo instance, if the method call succeeds.
  • If the call fails, returns nil.

getSdkVersion

Gets the SDK version.

+ (NSString * _Nonnull)getSdkVersion;

Parameters

Returns

The SDK version number. The format is a string.

getVolumeOfEffect

Gets the volume of a specified audio effect file.

- (int)getVolumeOfEffect:(int)soundId;

Parameters

soundId
The ID of the audio effect file.

Returns

  • ≥ 0: Returns the volume of the specified audio effect, if the method call is successful. The value ranges between 0 and 100. 100 represents the original volume.
  • < 0: Failure.

sharedEngineWithConfig

Creates and initializes AgoraRtcEngineKit.

+ (instancetype _Nonnull)sharedEngineWithConfig:(AgoraRtcEngineConfig * _Nonnull)config
                                       delegate:(id<AgoraRtcEngineDelegate> _Nullable)delegate;

Details

All called methods provided by the AgoraRtcEngineKit class are executed asynchronously. Agora recommends calling these methods in the same thread.

Attention:
  • Before calling other APIs, you must call this method to create the AgoraRtcEngineKit object.
  • You can create the AgoraRtcEngineKit instance either by calling this method or by calling sharedEngineWithAppId. The difference between sharedEngineWithAppId and this method is that this method supports more configurations when creating the AgoraRtcEngineKit instance, for example, specifying the region for connection and setting the log files.
  • The SDK supports creating only one AgoraRtcEngineKit instance for an app.

Parameters

config

Configurations for the AgoraRtcEngineKit instance. See AgoraRtcEngineConfig.

delegate
The event handler for AgoraRtcEngineKit. See AgoraRtcEngineDelegate.

Returns

  • The AgoraRtcEngineKit instance, if the method call succeeds.
  • < 0: Failure.
    • -1: A general error occurs (no specified reason).
    • -2: The parameter is invalid.
    • -7: The SDK is not initialized.
    • -22: The resource request failed. The SDK fails to allocate resources because your app consumes too much system resource or the system resources are insufficient.
    • -101: The App ID is invalid.

isCameraAutoFocusFaceModeSupported

Checks whether the device supports the face auto-focus function.

- (BOOL)isCameraAutoFocusFaceModeSupported;

Details

Attention:

Returns

  • YES: The device supports the face auto-focus function.
  • NO: The device does not support the face auto-focus function.

isCameraExposurePositionSupported

Checks whether the device supports manual exposure.

- (BOOL)isCameraExposurePositionSupported;

Details

Attention:

Returns

  • YES: The device supports manual exposure.
  • NO: The device does not support manual exposure.

isCameraFocusSupported

Check whether the device supports the manual focus function.

- (BOOL)isCameraFocusPositionInPreviewSupported;

Details

Attention:

Returns

  • YES: The device supports the manual focus function.
  • NO: The device does not support the manual focus function.

isCameraTorchSupported

Checks whether the device supports camera flash.

- (BOOL)isCameraTorchSupported NS_SWIFT_NAME(isCameraTorchSupported());

Details

Attention:
  • Call this method after enabling the local camera, for example, by calling joinChannelByToken [2/4], enableVideo, or enableLocalVideo, depending on which method you use to turn on your local camera.
  • The app enables the front camera by default. If your front camera does not support enabling the flash, this method returns NO. If you want to check whether the rear camera supports the flash function, call switchCamera before this method.
  • On iPads with system version 15, even if isCameraTorchSupported returns YES, you might fail to successfully enable the flash by calling setCameraTorchOn due to system issues.

Returns

  • YES: The device supports camera flash.
  • NO: The device does not support camera flash.

isCameraZoomSupported

Checks whether the device supports camera zoom.

- (BOOL)isCameraZoomSupported;

Details

Attention:

Returns

  • YES: The device supports camera zoom.
  • NO: The device does not support camera zoom.

isSpeakerphoneEnabled

Checks whether the speakerphone is enabled.

- (BOOL)isSpeakerphoneEnabled;

Returns

  • YES: The speakerphone is enabled, and the audio plays from the speakerphone.
  • NO: The speakerphone is not enabled, and the audio plays from devices other than the speakerphone. For example, the headset or earpiece.

joinChannelByToken [1/4]

Joins a channel.

- (int)joinChannelByToken:(NSString * _Nullable)token
                channelId:(NSString * _Nonnull)channelId
                     info:(NSString * _Nullable)info
                      uid:(NSUInteger)uid
              joinSuccess:(void(^ _Nullable)(NSString * _Nonnull channel, NSUInteger uid, NSInteger elapsed))joinSuccessBlock;

Details

This method enables users to join a channel. Users in the same channel can talk to each other, and multiple users in the same channel can start a group chat. Users with different App IDs cannot call each other.

A successful call of this method triggers the following callbacks:

When the connection between the client and Agora's server is interrupted due to poor network conditions, the SDK tries reconnecting to the server. When the local client successfully rejoins the channel, the SDK triggers the didRejoinChannel callback on the local client.

Attention: Once a user joins the channel, the user subscribes to the audio and video streams of all the other users in the channel by default, giving rise to usage and billing calculation. To stop subscribing to a specified stream or all remote streams, call the corresponding mute methods.

Parameters

token
The token generated on your server for authentication. See .
channelId
The channel name. This parameter signifies the channel in which users engage in real-time audio and video interaction. Under the premise of the same App ID, users who fill in the same channel ID enter the same channel for audio and video interaction. The string length must be less than 64 bytes. Supported characters:
  • All lowercase English letters: a to z.
  • All uppercase English letters: A to Z.
  • All numeric characters: 0 to 9.
  • Space
  • "!", "#", "$", "%", "&", "(", ")", "+", "-", ":", ";", "<", "= ", ".", ">", "?", "@", "[", "]", "^", "_", "{", "}", "|", "~", ","
info
(Optional) Reserved for future use.
uid
The user ID. This parameter is used to identify the user in the channel for real-time audio and video interaction. You need to set and manage user IDs yourself, and ensure that each user ID in the same channel is unique. This parameter is a 32-bit unsigned integer. The value range is 1 to 232-1. If the user ID is not assigned (or set to 0), the SDK assigns a random user ID and returns it in the didJoinChannel callback. Your application must record and maintain the returned user ID, because the SDK does not do so.
joinSuccessBlock
Occurs when a user joins a channel. If you implement both joinSuccessBlock and didJoinChannel, joinSuccessBlock takes higher priority than didJoinChannel. Agora recommends setting joinSuccessBlock as nil to use didJoinChannel.

Returns

  • 0: Success.
  • < 0: Failure.
    • -2: The parameter is invalid. For example, the token is invalid, the uid parameter is not set to an integer, or the value of a member in AgoraRtcChannelMediaOptions is invalid. You need to pass in a valid parameter and join the channel again.
    • -3: Failes to initialize the AgoraRtcEngineKit object. You need to reinitialize the AgoraRtcEngineKit object.
    • -7: The AgoraRtcEngineKit object has not been initialized. You need to initialize the AgoraRtcEngineKit object before calling this method.
    • -8: The internal state of the AgoraRtcEngineKit object is wrong. The typical cause is that you call this method to join the channel without calling startEchoTestWithConfig to stop the test after calling stopEchoTest to start a call loop test. You need to call stopEchoTest before calling this method.
    • -17: The request to join the channel is rejected. The typical cause is that the user is in the channel. Agora recommends that you use the connectionChangedToState callback to determine whether the user exists in the channel. Do not call this method to join the channel unless you receive the AgoraConnectionStateDisconnected(1) state.
    • -102: The channel name is invalid. You need to pass in a valid channelname in channelId to rejoin the channel.
    • -121: The user ID is invalid. You need to pass in a valid user ID in uid to rejoin the channel.

joinChannelByToken [2/4]

Joins a channel with media options.

- (int)joinChannelByToken:(NSString * _Nullable)token
                channelId:(NSString * _Nonnull)channelId
                      uid:(NSUInteger)uid
             mediaOptions:(AgoraRtcChannelMediaOptions * _Nonnull)mediaOptions
              joinSuccess:(void(^ _Nullable)(NSString * _Nonnull channel, NSUInteger uid, NSInteger elapsed))joinSuccessBlock;

Details

This method enables users to join a channel. Users in the same channel can talk to each other, and multiple users in the same channel can start a group chat. Users with different App IDs cannot call each other.

A successful call of this method triggers the following callbacks:

When the connection between the client and Agora's server is interrupted due to poor network conditions, the SDK tries reconnecting to the server. When the local client successfully rejoins the channel, the SDK triggers the didRejoinChannel callback on the local client.

Compared to joinChannelByToken [1/4], this method adds the options parameter to configure whether to automatically subscribe to all remote audio and video streams in the channel when the user joins the channel. By default, the user subscribes to the audio and video streams of all the other users in the channel, giving rise to usage and billings. To unsubscribe, set the options parameter or call the mute methods accordingly.

Attention:
  • This method allows users to join only one channel at a time.
  • Ensure that the app ID you use to generate the token is the same app ID that you pass in the sharedEngineWithConfig method; otherwise, you may fail to join the channel by token.

Parameters

token
The token generated on your server for authentication. See .
channelId
The channel name. This parameter signifies the channel in which users engage in real-time audio and video interaction. Under the premise of the same App ID, users who fill in the same channel ID enter the same channel for audio and video interaction. The string length must be less than 64 bytes. Supported characters:
  • All lowercase English letters: a to z.
  • All uppercase English letters: A to Z.
  • All numeric characters: 0 to 9.
  • Space
  • "!", "#", "$", "%", "&", "(", ")", "+", "-", ":", ";", "<", "= ", ".", ">", "?", "@", "[", "]", "^", "_", "{", "}", "|", "~", ","
uid
The user ID. This parameter is used to identify the user in the channel for real-time audio and video interaction. You need to set and manage user IDs yourself, and ensure that each user ID in the same channel is unique. This parameter is a 32-bit unsigned integer. The value range is 1 to 232-1. If the user ID is not assigned (or set to 0), the SDK assigns a random user ID and returns it in the didJoinChannel callback. Your application must record and maintain the returned user ID, because the SDK does not do so.
mediaOptions
The channel media options. See AgoraRtcChannelMediaOptions.
joinSuccessBlock
Occurs when a user joins a channel. If you implement both joinSuccessBlock and didJoinChannel, joinSuccessBlock takes higher priority than didJoinChannel. Agora recommends setting joinSuccessBlock as nil to use didJoinChannel.

Returns

  • 0: Success.
  • < 0: Failure.
    • -2: The parameter is invalid. For example, the token is invalid, the uid parameter is not set to an integer, or the value of a member in AgoraRtcChannelMediaOptions is invalid. You need to pass in a valid parameter and join the channel again.
    • -3: Failes to initialize the AgoraRtcEngineKit object. You need to reinitialize the AgoraRtcEngineKit object.
    • -7: The AgoraRtcEngineKit object has not been initialized. You need to initialize the AgoraRtcEngineKit object before calling this method.
    • -8: The internal state of the AgoraRtcEngineKit object is wrong. The typical cause is that you call this method to join the channel without calling startEchoTestWithConfig to stop the test after calling stopEchoTest to start a call loop test. You need to call stopEchoTest before calling this method.
    • -17: The request to join the channel is rejected. The typical cause is that the user is in the channel. Agora recommends that you use the connectionChangedToState callback to determine whether the user exists in the channel. Do not call this method to join the channel unless you receive the AgoraConnectionStateDisconnected(1) state.
    • -102: The channel name is invalid. You need to pass in a valid channelname in channelId to rejoin the channel.
    • -121: The user ID is invalid. You need to pass in a valid user ID in uid to rejoin the channel.

joinChannelByToken [3/4]

Joins a channel with a User Account and Token.

- (int)joinChannelByToken:(NSString * _Nullable)token
                channelId:(NSString * _Nonnull)channelId
              userAccount:(NSString * _Nonnull)userAccount
              joinSuccess:(void(^ _Nullable)(NSString * _Nonnull channel, NSUInteger uid, NSInteger elapsed))joinSuccessBlock;

Details

This method allows a user to join the channel with the user account and a token. After the user successfully joins the channel, the SDK triggers the following callbacks:

Once a user joins the channel, the user subscribes to the audio and video streams of all the other users in the channel by default, giving rise to usage and billing calculation. To stop subscribing to a specified stream or all remote streams, call the corresponding mute methods.

Attention: To ensure smooth communication, use the same parameter type to identify the user. For example, if a user joins the channel with a user ID, then ensure all the other users use the user ID too. The same applies to the user account. If a user joins the channel with the Agora Web SDK, ensure that the ID of the user is set to the same parameter type.

Parameters

token
The token generated on your server for authentication. See .
channelId
The channel name. This parameter signifies the channel in which users engage in real-time audio and video interaction. Under the premise of the same App ID, users who fill in the same channel ID enter the same channel for audio and video interaction. The string length must be less than 64 bytes. Supported characters:
  • All lowercase English letters: a to z.
  • All uppercase English letters: A to Z.
  • All numeric characters: 0 to 9.
  • Space
  • "!", "#", "$", "%", "&", "(", ")", "+", "-", ":", ";", "<", "= ", ".", ">", "?", "@", "[", "]", "^", "_", "{", "}", "|", "~", ","
userAccount
The user account. This parameter is used to identify the user in the channel for real-time audio and video engagement. You need to set and manage user accounts yourself and ensure that each user account in the same channel is unique. The maximum length of this parameter is 255 bytes. Ensure that you set this parameter and do not set it as nil. Supported characters are (89 in total):
  • The 26 lowercase English letters: a to z.
  • The 26 uppercase English letters: A to Z.
  • All numeric characters: 0 to 9.
  • Space
  • "!", "#", "$", "%", "&", "(", ")", "+", "-", ":", ";", "<", "= ", ".", ">", "?", "@", "[", "]", "^", "_", "{", "}", "|", "~", ","
joinSuccessBlock
Occurs when a user joins a channel. If you implement both joinSuccessBlock and didJoinChannel, joinSuccessBlock takes higher priority than didJoinChannel. Agora recommends setting joinSuccessBlock as nil to use didJoinChannel.

Returns

  • 0: Success.
  • < 0: Failure.
    • -2: The parameter is invalid.
    • -3: The initialization of the SDK fails. You can try to initialize the SDK again.
    • -5: The request is rejected.
    • -17: The request to join the channel is rejected. Since the SDK only supports users to join one AgoraRtcEngineKit channel at a time; this error code will be returned when the user who has joined the AgoraRtcEngineKit channel calls the join channel method in the AgoraRtcEngineKit class again with a valid channel name.

joinChannelByToken [4/4]

Joins the channel with a user account, and configures whether to automatically subscribe to audio or video streams after joining the channel.

- (int)joinChannelByToken:(NSString * _Nullable)token
                channelId:(NSString * _Nonnull)channelId
              userAccount:(NSString * _Nonnull)userAccount
             mediaOptions:(AgoraRtcChannelMediaOptions * _Nonnull)mediaOptions
              joinSuccess:(void(^ _Nullable)(NSString * _Nonnull channel, NSUInteger uid, NSInteger elapsed))joinSuccessBlock;

Details

This method allows a user to join the channel with the user account. After the user successfully joins the channel, the SDK triggers the following callbacks:

Once a user joins the channel, the user subscribes to the audio and video streams of all the other users in the channel by default, giving rise to usage and billing calculation. To stop subscribing to a specified stream or all remote streams, call the corresponding mute methods.

Compared to joinChannelByToken [3/4], this method adds the options parameter to configure whether to automatically subscribe to all remote audio and video streams in the channel when the user joins the channel. By default, the user subscribes to the audio and video streams of all the other users in the channel, giving rise to usage and billings. To unsubscribe, set the options parameter or call the mute methods accordingly.

Attention: To ensure smooth communication, use the same parameter type to identify the user. For example, if a user joins the channel with a user ID, then ensure all the other users use the user ID too. The same applies to the user account. If a user joins the channel with the Agora Web SDK, ensure that the ID of the user is set to the same parameter type.

Parameters

token
The token generated on your server for authentication. See .
channelId
The channel name. This parameter signifies the channel in which users engage in real-time audio and video interaction. Under the premise of the same App ID, users who fill in the same channel ID enter the same channel for audio and video interaction. The string length must be less than 64 bytes. Supported characters:
  • All lowercase English letters: a to z.
  • All uppercase English letters: A to Z.
  • All numeric characters: 0 to 9.
  • Space
  • "!", "#", "$", "%", "&", "(", ")", "+", "-", ":", ";", "<", "= ", ".", ">", "?", "@", "[", "]", "^", "_", "{", "}", "|", "~", ","
userAccount
The user account. This parameter is used to identify the user in the channel for real-time audio and video engagement. You need to set and manage user accounts yourself and ensure that each user account in the same channel is unique. The maximum length of this parameter is 255 bytes. Ensure that you set this parameter and do not set it as nil. Supported characters are (89 in total):
  • The 26 lowercase English letters: a to z.
  • The 26 uppercase English letters: A to Z.
  • All numeric characters: 0 to 9.
  • Space
  • "!", "#", "$", "%", "&", "(", ")", "+", "-", ":", ";", "<", "= ", ".", ">", "?", "@", "[", "]", "^", "_", "{", "}", "|", "~", ","
mediaOptions
The channel media options. See AgoraRtcChannelMediaOptions.
joinSuccessBlock
Occurs when a user joins a channel. If you implement both joinSuccessBlock and didJoinChannel, joinSuccessBlock takes higher priority than didJoinChannel. Agora recommends setting joinSuccessBlock as nil to use didJoinChannel.

Returns

  • 0: Success.
  • < 0: Failure.
    • -2: The parameter is invalid. For example, the token is invalid, the uid parameter is not set to an integer, or the value of a member in AgoraRtcChannelMediaOptions is invalid. You need to pass in a valid parameter and join the channel again.
    • -3: Failes to initialize the AgoraRtcEngineKit object. You need to reinitialize the AgoraRtcEngineKit object.
    • -7: The AgoraRtcEngineKit object has not been initialized. You need to initialize the AgoraRtcEngineKit object before calling this method.
    • -8: The internal state of the AgoraRtcEngineKit object is wrong. The typical cause is that you call this method to join the channel without calling startEchoTestWithConfig to stop the test after calling stopEchoTest to start a call loop test. You need to call stopEchoTest before calling this method.
    • -17: The request to join the channel is rejected. The typical cause is that the user is in the channel. Agora recommends that you use the connectionChangedToState callback to determine whether the user exists in the channel. Do not call this method to join the channel unless you receive the AgoraConnectionStateDisconnected(1) state.
    • -102: The channel name is invalid. You need to pass in a valid channelname in channelId to rejoin the channel.
    • -121: The user ID is invalid. You need to pass in a valid user ID in uid to rejoin the channel.

leaveChannel [1/2]

Leaves a channel.

- (int)leaveChannel:(void(^ _Nullable)(AgoraChannelStats * _Nonnull stat))leaveChannelBlock;

Details

This method releases all resources related to the session.

This method call is asynchronous. When this method returns, it does not necessarily mean that the user has left the channel.

After joining the channel, you must call this method or leaveChannel [2/2] to end the call, otherwise, the next call cannot be started.

If you successfully call this method and leave the channel, the following callbacks are triggered:
Attention:
  • If you call destroy immediately after calling this method, the SDK does not trigger the didLeaveChannelWithStats callback.
  • If you have called joinChannelExByToken [1/2] to join multiple channels, calling this method will leave the channels when calling joinChannelByToken [2/4] and joinChannelExByToken [1/2] at the same time.

Parameters

leaveChannelBlock

This callback indicates that a user leaves a channel, and provides the statistics of the call in AgoraChannelStats.

Returns

  • 0: Success.
  • < 0: Failure.
    • -1: A general error occurs (no specified reason).
    • -2: The parameter is invalid.
    • -7: The SDK is not initialized.

leaveChannel [2/2]

Sets channel options and leaves the channel.

- (int)leaveChannel:(AgoraLeaveChannelOptions * _Nonnull)options
  leaveChannelBlock:(void (^ _Nullable)(AgoraChannelStats * _Nonnull))leaveChannelBlock;

Details

This method will release all resources related to the session, leave the channel, that is, hang up or exit the call. This method can be called whether or not a call is currently in progress.

After joining the channel, you must call this method or to end the call, otherwise, the next call cannot be started.

This method call is asynchronous. When this method returns, it does not necessarily mean that the user has left the channel. After actually leaving the channel, the local user triggers the didLeaveChannelWithStats callback; after the user in the communication scenario and the host in the live streaming scenario leave the channel, the remote user triggers the didOfflineOfUid callback.

Attention:
  • If you call destroy immediately after calling this method, the SDK does not trigger the didLeaveChannelWithStats callback.
  • If you have called joinChannelExByToken [1/2] to join multiple channels, calling this method will leave the channels when calling joinChannelByToken [2/4] and joinChannelExByToken [1/2] at the same time.

Parameters

options
The options for leaving the channel. See AgoraLeaveChannelOptions.
leaveChannelBlock

This callback indicates that a user leaves a channel, and provides the statistics of the call in AgoraChannelStats.

Returns

  • 0: Success.
  • < 0: Failure.

muteAllRemoteAudioStreams

Stops or resumes subscribing to the audio streams of all remote users.

- (int)muteAllRemoteAudioStreams:(BOOL)mute;

Details

After successfully calling this method, the local user stops or resumes subscribing to the audio streams of all remote users, including all subsequent users.

Attention:
  • Call this method after joining a channel.
  • If you do not want to subscribe the audio streams of remote users before joining a channel, you can set autoSubscribeAudio as NO when calling joinChannelByToken [2/4].
  • See recommended settings in Set the Subscribing State.

Parameters

mute
Whether to stop subscribing to the audio streams of all remote users:
  • YES: Stops subscribing to the audio streams of all remote users.
  • NO: (Default) Subscribes to the audio streams of all remote users by default.

Returns

  • 0: Success.
  • < 0: Failure.

muteAllRemoteVideoStreams

Stops or resumes subscribing to the video streams of all remote users.

- (int)muteAllRemoteVideoStreams:(BOOL)mute;

Details

After successfully calling this method, the local user stops or resumes subscribing to the audio streams of all remote users, including all subsequent users.

Attention:
  • Call this method after joining a channel.
  • If you do not want to subscribe the video streams of remote users before joining a channel, you can call joinChannelByToken [2/4] and set autoSubscribeVideo as NO.

Parameters

mute
Whether to stop subscribing to the video streams of all remote users.
  • YES: Stop subscribing to the video streams of all remote users.
  • NO: (Default) Subscribe to the audio streams of all remote users by default.

Returns

  • 0: Success.
  • < 0: Failure.

muteLocalAudioStream

Stops or resumes publishing the local audio stream.

- (int)muteLocalAudioStream:(BOOL)mute;

Details

Attention: This method does not affect any ongoing audio recording, because it does not disable the audio capture device.

Parameters

mute
Whether to stop publishing the local audio stream:
  • YES: Stops publishing the local audio stream.
  • NO: (Default) Resumes publishing the local audio stream.

Returns

  • 0: Success.
  • < 0: Failure.

muteLocalVideoStream

Stops or resumes publishing the local video stream.

- (int)muteLocalVideoStream:(BOOL)mute;

Details

A successful call of this method triggers the didVideoMuted callback on the remote client.

Attention:
  • This method executes faster than the enableLocalVideo(NO) method, which controls the sending of the local video stream.
  • This method does not affect any ongoing video recording, because it does not disable the camera.

Parameters

mute
Whether to stop publishing the local video stream.
  • YES: Stop publishing the local video stream.
  • NO: (Default) Publish the local video stream.

Returns

  • 0: Success.
  • < 0: Failure.

muteRemoteAudioStream

Stops or resumes subscribing to the audio stream of a specified user.

- (int)muteRemoteAudioStream:(NSUInteger)uid mute:(BOOL)mute;

Details

Attention:
  • Call this method after joining a channel.

Parameters

uid
The user ID of the specified user.
mute
Whether to subscribe to the specified remote user's audio stream.
  • YES: Stop subscribing to the audio stream of the specified user.
  • NO: (Default) Subscribe to the audio stream of the specified user.

Returns

  • 0: Success.
  • < 0: Failure.

muteRemoteVideoStream

Stops or resumes subscribing to the video stream of a specified user.

- (int)muteRemoteVideoStream:(NSUInteger)uid
                        mute:(BOOL)mute;

Details

Attention:
  • Call this method after joining a channel.

Parameters

uid
The user ID of the specified user.
mute
Whether to subscribe to the specified remote user's video stream.
  • YES: Stop subscribing to the video streams of the specified user.
  • NO: (Default) Subscribe to the video stream of the specified user.

Returns

  • 0: Success.
  • < 0: Failure.

pauseAllChannelMediaRelay

Pauses the media stream relay to all target channels.

- (int)pauseAllChannelMediaRelay;

Details

After the cross-channel media stream relay starts, you can call this method to pause relaying media streams to all target channels; after the pause, if you want to resume the relay, call resumeAllChannelMediaRelay.

Attention: Call this method after startOrUpdateChannelMediaRelay.

Returns

  • 0: Success.
  • < 0: Failure.

pauseAllEffects

Pauses all audio effects.

- (int)pauseAllEffects;

Returns

  • 0: Success.
  • < 0: Failure.

pauseAudioMixing

Pauses playing and mixing the music file.

- (int)pauseAudioMixing;

Details

Call this method after joining a channel.

Returns

  • 0: Success.
  • < 0: Failure.

pauseEffect

Pauses a specified audio effect file.

- (int)pauseEffect:(int)soundId;

Parameters

soundId
The audio effect ID. The ID of each audio effect file is unique.

Returns

  • 0: Success.
  • < 0: Failure.

playEffect [1/3]

Plays the specified local or online audio effect file.

- (int)playEffect:(int)soundId
         filePath:(NSString* _Nonnull)filePath
        loopCount:(NSInteger)loopCount
            pitch:(double)pitch
              pan:(double)pan
             gain:(NSInteger)gain;

Details

Attention: If you use this method to play an online audio effect file, Agora recommends that you cache the online audio effect file to your local device, call preloadEffect to preload the cached audio effect file into memory, and then call this method to play the audio effect. Otherwise, you might encounter playback failures or no sound during playback due to loading timeouts or failures.

To play multiple audio effect files at the same time, call this method multiple times with different soundId and filePath. To achieve the optimal user experience, Agora recommends that do not playing more than three audio files at the same time. After the playback of an audio effect file completes, the SDK triggers the rtcEngineDidAudioEffectFinish callback.

Parameters

soundId
The audio effect ID. The ID of each audio effect file is unique.
Attention: If you have preloaded an audio effect into memory by calling preloadEffect, ensure that the value of this parameter is the same as that of soundId in preloadEffect.
filePath

The absolute path or URL address (including the suffixes of the filename) of the audio effect file. For example, /var/mobile/Containers/Data/audio.mp4. Supported audio formats include MP3, AAC, M4A, MP4, WAV, and 3GP. See supported audio formats.

loopCount
The number of times the audio effect loops.
  • ≥ 0: The number of playback times. For example, 1 means looping one time, which means playing the audio effect two times in total.
  • -1: Play the audio file in an infinite loop.
pitch
The pitch of the audio effect. The value range is 0.5 to 2.0. The default value is 1.0, which means the original pitch. The lower the value, the lower the pitch.
pan
The spatial position of the audio effect. The value ranges between -1.0 and 1.0:
  • -1.0: The audio effect is heard on the left of the user.
  • 0.0: The audio effect is heard in front of the user.
  • 1.0: The audio effect is heard on the right of the user.
gain
The volume of the audio effect. The value range is 0.0 to 100.0. The default value is 100.0, which means the original volume. The smaller the value, the lower the volume.

Returns

  • 0: Success.
  • < 0: Failure.

playEffect [2/3]

Plays the specified local or online audio effect file.

- (int)playEffect:(int)soundId
         filePath:(NSString* _Nonnull)filePath
        loopCount:(NSInteger)loopCount
            pitch:(double)pitch
              pan:(double)pan
             gain:(NSInteger)gain
          publish:(BOOL)publish;

Details

Attention: If you use this method to play an online audio effect file, Agora recommends that you cache the online audio effect file to your local device, call preloadEffect to preload the cached audio effect file into memory, and then call this method to play the audio effect. Otherwise, you might encounter playback failures or no sound during playback due to loading timeouts or failures.
To play multiple audio effect files at the same time, call this method multiple times with different soundId and filePath. To achieve the optimal user experience, Agora recommends that do not playing more than three audio files at the same time. After the playback of an audio effect file completes, the SDK triggers the rtcEngineDidAudioEffectFinish callback.
Note: Supported audio formats include MP3, AAC, M4A, MP4, WAV, and 3GP. See Supported Audio Formats.

Parameters

soundId
The audio effect ID. The ID of each audio effect file is unique.
Attention: If you have preloaded an audio effect into memory by calling preloadEffect, ensure that the value of this parameter is the same as that of soundId in preloadEffect.
filePath
Attention: If you have preloaded an audio effect into memory by calling preloadEffect, ensure that the value of this parameter is the same as that of filePath in preloadEffect.
loopCount
The number of times the audio effect loops.
  • ≥ 0: The number of playback times. For example, 1 means looping one time, which means playing the audio effect two times in total.
  • -1: Play the audio file in an infinite loop.
pitch
The pitch of the audio effect. The value range is 0.5 to 2.0. The default value is 1.0, which means the original pitch. The lower the value, the lower the pitch.
pan
The spatial position of the audio effect. The value ranges between -1.0 and 1.0:
  • -1.0: The audio effect is heard on the left of the user.
  • 0.0: The audio effect is heard in front of the user.
  • 1.0: The audio effect is heard on the right of the user.
gain
The volume of the audio effect. The value range is 0.0 to 100.0. The default value is 100.0, which means the original volume. The smaller the value, the lower the volume.
publish
Whether to publish the audio effect to the remote users.
  • YES: Publish the audio effect to the remote users. Both the local user and remote users can hear the audio effect.
  • NO: Do not publish the audio effect to the remote users. Only the local user can hear the audio effect.

Returns

  • 0: Success.
  • < 0: Failure.

playEffect [3/3]

Plays the specified local or online audio effect file.

- (int)playEffect:(int)soundId
         filePath:(NSString* _Nonnull)filePath
        loopCount:(NSInteger)loopCount
            pitch:(double)pitch
              pan:(double)pan
             gain:(NSInteger)gain
          publish:(BOOL)publish
         startPos:(int)startPos;

Details

Attention: If you use this method to play an online audio effect file, Agora recommends that you cache the online audio effect file to your local device, call preloadEffect to preload the cached audio effect file into memory, and then call this method to play the audio effect. Otherwise, you might encounter playback failures or no sound during playback due to loading timeouts or failures.

To play multiple audio effect files at the same time, call this method multiple times with different soundId and filePath. To achieve the optimal user experience, Agora recommends that do not playing more than three audio files at the same time. After the playback of an audio effect file completes, the SDK triggers the rtcEngineDidAudioEffectFinish callback.

Parameters

soundId
The audio effect ID. The ID of each audio effect file is unique.
Attention: If you have preloaded an audio effect into memory by calling preloadEffect, ensure that the value of this parameter is the same as that of soundId in preloadEffect.
filePath

The absolute path or URL address (including the suffixes of the filename) of the audio effect file. For example, /var/mobile/Containers/Data/audio.mp4. Supported audio formats include MP3, AAC, M4A, MP4, WAV, and 3GP. See supported audio formats.

Attention: If you have preloaded an audio effect into memory by calling preloadEffect, ensure that the value of this parameter is the same as that of filePath in preloadEffect.
loopCount
The number of times the audio effect loops.
  • ≥ 0: The number of playback times. For example, 1 means looping one time, which means playing the audio effect two times in total.
  • -1: Play the audio file in an infinite loop.
pitch
The pitch of the audio effect. The value range is 0.5 to 2.0. The default value is 1.0, which means the original pitch. The lower the value, the lower the pitch.
pan
The spatial position of the audio effect. The value ranges between -1.0 and 1.0:
  • -1.0: The audio effect is heard on the left of the user.
  • 0.0: The audio effect is heard in front of the user.
  • 1.0: The audio effect is heard on the right of the user.
gain
The volume of the audio effect. The value range is 0.0 to 100.0. The default value is 100.0, which means the original volume. The smaller the value, the lower the volume.
publish
Whether to publish the audio effect to the remote users:
  • YES: Publish the audio effect to the remote users. Both the local user and remote users can hear the audio effect.
  • NO: Do not publish the audio effect to the remote users. Only the local user can hear the audio effect.
startPos

The playback position (ms) of the audio effect file.

Returns

  • 0: Success.
  • < 0: Failure.

preloadEffect

Preloads a specified audio effect file into the memory.

- (int)preloadEffect:(int)soundId
            filePath:(NSString* _Nonnull)filePath;

Details

To ensure smooth communication, It is recommended that you limit the size of the audio effect file. You can call this method to preload the audio effect before calling joinChannelByToken [2/4].

Attention:
  • This method does not support online audio effect files.
  • For the audio file formats supported by this method, see What formats of audio files does the Agora RTC SDK support.

Parameters

soundId
The audio effect ID. The ID of each audio effect file is unique.
filePath
File path:
  • iOS or macOS: The absolute path or URL address (including the suffixes of the filename) of the audio effect file. For example: /var/mobile/Containers/Data/audio.mp4.

Returns

  • 0: Success.
  • < 0: Failure.

pullPlaybackAudioFrameRawData

Pulls the remote audio data.

- (BOOL)pullPlaybackAudioFrameRawData:(void * _Nonnull)data
                              lengthInByte:(NSUInteger)lengthInByte;

Details

Before calling this method, you need to call enableExternalAudioSink to notify the app to enable and set the external rendering.

After a successful method call, the app pulls the decoded and mixed audio data for playback.

Attention:
  • This method only supports pulling data from custom audio source. If you need to pull the data captured by the SDK, do not call this method.
  • Call this method after joining a channel.
  • Once you enable the external audio sink, the app will not retrieve any audio data from the onPlaybackAudioFrame callback.
  • The difference between this method and the onPlaybackAudioFrame callback is as follows:
    • The SDK sends the audio data to the app through the onPlaybackAudioFrame callback. Any delay in processing the audio frames may result in audio jitter.
    • After a successful method call, the app automatically pulls the audio data from the SDK. After setting the audio data parameters, the SDK adjusts the frame buffer and avoids problems caused by jitter in the external audio playback.

Parameters

data
The remote audio data to be pulled. The data type is byte[].
lengthInByte
The data length (byte). The value of this parameter is related to the audio duration, and the values of the sampleRate and channels parameters that you set in enableExternalAudioSink. lengthInByte = sampleRate/1000 × 2 × channels × audio duration (ms).

Returns

  • YES: Success.
  • NO: Failure.

pullPlaybackAudioFrameSampleBufferByLengthInByte

Pulls remote audio data in the SampleBuffer format.

- (CMSampleBufferRef _Nullable)pullPlaybackAudioFrameSampleBufferByLengthInByte:(NSUInteger)lengthInByte;

Details

Before calling this method, you need to call enableExternalAudioSink to notify the app to enable and set the external rendering.

After a successful method call, the app pulls the decoded and mixed audio data for playback.

Attention:
  • This method only supports pulling data from custom audio source. If you need to pull the data captured by the SDK, do not call this method.
  • Call this method after joining a channel.
  • Once you enable the external audio sink, the app will not retrieve any audio data from the onPlaybackAudioFrame callback.
  • The difference between this method and the onPlaybackAudioFrame callback is as follows:
    • The SDK sends the audio data to the app through the onPlaybackAudioFrame callback. Any delay in processing the audio frames may result in audio jitter.
    • After a successful method call, the app automatically pulls the audio data from the SDK. After setting the audio data parameters, the SDK adjusts the frame buffer and avoids problems caused by jitter in the external audio playback.

Parameters

lengthInByte
The data length (byte). The value of this parameter is related to the audio duration, and the values of the sampleRate and channels parameters that you set in enableExternalAudioSink. lengthInByte = sampleRate/1000 × 2 × channels × audio duration (ms).

Returns

  • YES: Success.
  • NO: Failure.

pushExternalAudioFrameNSData

Pushes the external audio frame to the SDK.

- (int)pushExternalAudioFrameRawData:(void* _Nonnull)data
                             samples:(NSInteger)samples
                          sampleRate:(NSInteger)sampleRate
                            channels:(NSInteger)channels
                            trackId:(NSInteger)trackId
                           timestamp:(NSTimeInterval)timestamp NS_SWIFT_NAME(pushExternalAudioFrameRawData(_:samples:sampleRate:channels:trackId:timestamp:));

Details

Attention:

Before calling this method, ensure that you set publishCustomAudioTrack to YES, and publishCustomAudioTrackId in AgoraRtcChannelMediaOptions to the audio track ID that you want to publish in the channel.

Parameters

data
External audio data.
samples
The number of samples.
timestamp
The timestamp (ms) of the external audio frame. It is required. You can use it to restore the order of the captured audio frame, or synchronize audio and video frames in video-related scenarios (including scenarios where external video sources are used).
sampleRate
The sample rate (Hz) of the external audio source which can be set as 8000, 16000, 32000, 44100, or 48000.
channels
The number of audio channels of the external audio sink:
  • 1: Mono.
  • 2: Stereo.
trackId
The audio track ID. Set this parameter to the custom audio track ID returned in createCustomAudioTrack.

Returns

  • 0: Success.
  • < 0: Failure.

pushExternalAudioFrameSampleBuffer

Pushes external CMSampleBuffer audio frames.

- (int)pushExternalAudioFrameSampleBuffer:(CMSampleBufferRef _Nonnull)sampleBuffer;

Parameters

sampleBuffer
The sample buffer.

Returns

  • 0: Success.
  • < 0: Failure.

pushExternalVideoFrame

Pushes the external raw video frame to the SDK.

- (BOOL)pushExternalVideoFrame:(AgoraVideoFrame * _Nonnull)frame;

Details

If you call setExternalVideoSource and set the enabled parameter as YES and the encodedFrame parameter as NO, you can call this method to push the external raw video frame to the SDK.

Parameters

frame

The external raw video frame to be pushed. See AgoraVideoFrame.

Returns

  • YES: Pushes the external raw video frame to the SDK successfully.
  • NO: Fails to push external raw video frame to the SDK.

queryCodecCapability

Queries the current device's supported video codec capabilities.

- (NSArray <AgoraVideoCodecCapInfo *> *__nullable)queryCodecCapability;

Details

Since
v4.2.0

Returns

  • One CodecCapAgoraVideoCodecCapInfoInfo array indicating the video encoding capability of the device, if the method call succeeds.
  • If the call timeouts, please modify the call logic and do not invoke the method in the main thread.

queryScreenCaptureCapability

Queries the highest frame rate supported by the device during screen sharing.

- (AgoraScreenCaptureFrameRateCapability)queryScreenCaptureCapability NS_SWIFT_NAME(queryScreenCaptureCapability());

Details

Since
v4.2.0

Applicable scenarios

To ensure optimal screen sharing performance, particularly in enabling high frame rates like 60 fps, Agora recommends you to query the device's maximum supported frame rate using this method beforehand. This way, if the device cannot support such a high frame rate, you can adjust the screen sharing stream accordingly to avoid any negative impact on the sharing quality. If the device does not support high frame rate, you can reduce the frame rate of the screen sharing stream appropriately when sharing the screen to ensure that the sharing effect meets your expectation.

Returns

rate

Allows a user to rate a call after the call ends.

- (int)rate:(NSString * _Nonnull)callId
     rating:(NSInteger)rating
description:(NSString * _Nullable)description;

Details

Attention: Ensure that you call this method after leaving a channel.

Parameters

callId
The current call ID. You can get the call ID by calling getCallId.
rating
The rating of the call. The value is between 1 (the lowest score) and 5 (the highest score). If you set a value out of this range, the SDK returns the -2 (ERR_INVALID_ARGUMENT) error.
description
(Optional) A description of the call. The string length should be less than 800 bytes.

Returns

  • 0: Success.
  • < 0: Failure.
    • -2 (ERR_INVALID_ARGUMENT).
    • -3 (ERR_NOT_READY).

registerAudioEncodedFrameObserver

Registers an encoded audio observer.

- (int)setAudioEncodedFrameDelegate:(id<AgoraAudioEncodedFrameDelegate> _Nonnull)delegate
                    config:(AgoraAudioEncodedFrameDelegateConfig * _Nonnull) config;

Details

Attention:
  • Call this method after joining a channel.
  • You can call this method or startAudioRecording [2/2] to set the recording type and quality of audio files, but Agora does not recommend using this method and startAudioRecording [2/2] at the same time. Only the method called later will take effect.

Parameters

config
Observer settings for the encoded audio. See AgoraAudioEncodedFrameDelegateConfig.
delegate
The encoded audio observer. See AgoraAudioEncodedFrameDelegate.

Returns

  • 0: Success.
  • < 0: Failure.

setAudioFrameDelegate

Registers an audio frame observer object.

- (BOOL)setAudioFrameDelegate:(id<AgoraAudioFrameDelegate> _Nullable)delegate;

Details

Call this method to register an audio frame observer object (register a callback). When you need the SDK to trigger onMixedAudioFrame, onRecordAudioFrame, onPlaybackAudioFrame or onEarMonitoringAudioFrame callback, you need to use this method to register the callbacks.

Attention: Ensure that you call this method before joining a channel.

Parameters

delegate

The observer object instance. See AgoraAudioFrameDelegate. Set the value as nil to release the instance. Agora recommends calling this method after receiving didLeaveChannelWithStats to release the audio observer object.

Returns

  • YES: Success.
  • NO: Failure.

registerAudioSpectrumDelegate

Register an audio spectrum observer.

- (int)registerAudioSpectrumDelegate:(id<AgoraAudioSpectrumDelegate> _Nullable )delegate;

Details

After successfully registering the audio spectrum observer and calling enableAudioSpectrumMonitor to enable the audio spectrum monitoring, the SDK reports the callback that you implement in the AgoraAudioSpectrumDelegate class according to the time interval you set.

Attention: You can call this method either before or after joining a channel.

Parameters

delegate

The audio spectrum observer. See AgoraAudioSpectrumDelegate.

Returns

  • 0: Success.
  • < 0: Failure.

registerLocalUserAccountWithAppID

Registers a user account.

- (int)registerLocalUserAccountWithAppID:(NSString * _Nonnull)appID userAccount:(NSString * _Nonnull)userAccount;

Details

Once registered, the user account can be used to identify the local user when the user joins the channel. After the registration is successful, the user account can identify the identity of the local user, and the user can use it to join the channel.

After the user successfully registers a user account, the SDK triggers the didLocalUserRegisteredWithUserId callback on the local client, reporting the user ID and account of the local user.

This method is optional. To join a channel with a user account, you can choose either of the following ways:
  • Call registerLocalUserAccountWithAppID to create a user account, and then call joinChannelByToken [4/4] to join the channel.
  • Call the joinChannelByToken [4/4] method to join the channel.

The difference between the two ways is that the time elapsed between calling the registerLocalUserAccountWithAppID method and joining the channel is shorter than directly calling joinChannelByToken [4/4].

Attention:
  • Ensure that you set the userAccount parameter; otherwise, this method does not take effect.
  • Ensure that the userAccount is unique in the channel.
  • To ensure smooth communication, use the same parameter type to identify the user. For example, if a user joins the channel with a user ID, then ensure all the other users use the user ID too. The same applies to the user account. If a user joins the channel with the Agora Web SDK, ensure that the ID of the user is set to the same parameter type.

Parameters

appID
The App ID of your project on Agora Console.
userAccount
The user account. This parameter is used to identify the user in the channel for real-time audio and video engagement. You need to set and manage user accounts yourself and ensure that each user account in the same channel is unique. The maximum length of this parameter is 255 bytes. Ensure that you set this parameter and do not set it as nil. Supported characters are as follow(89 in total):
  • The 26 lowercase English letters: a to z.
  • The 26 uppercase English letters: A to Z.
  • All numeric characters: 0 to 9.
  • Space
  • "!", "#", "$", "%", "&", "(", ")", "+", "-", ":", ";", "<", "= ", ".", ">", "?", "@", "[", "]", "^", "_", "{", "}", "|", "~", ","

Returns

  • 0: Success.
  • < 0: Failure.

setMediaMetadataDelegate

Registers the metadata observer.

- (BOOL)setMediaMetadataDelegate:(id<AgoraMediaMetadataDelegate> _Nullable)metadataDelegate withType:(AgoraMetadataType)type;

Details

You need to implement the AgoraMediaMetadataDelegate class and specify the metadata type in this method. This method enables you to add synchronized metadata in the video stream for more diversified live interactive streaming, such as sending shopping links, digital coupons, and online quizzes.

A successful call of this method triggers the metadataMaxSize callback.

Attention: Call this method before joinChannelByToken [2/4].

Parameters

observer
The metadata observer. See AgoraMediaMetadataDelegate.
type

The metadata type. The SDK currently only supports AgoraMetadataTypeVideo. See AgoraMetadataType.

Returns

  • 0: Success.
  • < 0: Failure.

registerVideoEncodedFrameObserver

Registers a receiver object for the encoded video image.

- (BOOL)setEncodedVideoFrameDelegate:(id<AgoraEncodedVideoFrameDelegate> _Nullable)delegate;

Details

If you only want to observe encoded video frames (such as h.264 format) without decoding and rendering the video, Agora recommends that you implement one AgoraEncodedVideoFrameDelegate class through this method.

If you want to obtain the original video data of some remote users (referred to as group A) and the encoded video data of other remote users (referred to as group B), you can refer to the following steps:
  1. Call setVideoFrameDelegate to register the raw video frame observer before joining the channel.
  2. Call registerVideoEncodedFrameObserver to register the encoded video frame observer before joining the channel.
  3. After joining the channel, get the user IDs of group B users through didJoinedOfUid, and then call setRemoteVideoSubscriptionOptions to set the encodedFrameOnly of this group of users to YES.
  4. Call muteAllRemoteVideoStreams(NO) to start receiving the video streams of all remote users. Then:
Attention:
  • Call this method before joining a channel.

Parameters

delegate
The observer object instance. See AgoraEncodedVideoFrameDelegate. Set the value as nil to release the instance.

Returns

  • YES: Success.
  • NO: Failure.

setVideoFrameDelegate

Registers a raw video frame observer object.

- (BOOL)setVideoFrameDelegate:(id<AgoraVideoFrameDelegate> _Nullable)delegate;

Details

If you want to observe raw video frames (such as YUV or RGBA format), Agora recommends that you implement one AgoraVideoFrameDelegate class with this method.

When calling this method to register a video observer, you can register callbacks in the AgoraVideoFrameDelegate class as needed. After you successfully register the video frame observer, the SDK triggers the registered callbacks each time a video frame is received.

If you want to obtain the original video data of some remote users (referred to as group A) and the encoded video data of other remote users (referred to as group B), you can refer to the following steps:
  1. Call setVideoFrameDelegate to register the raw video frame observer before joining the channel.
  2. Call registerVideoEncodedFrameObserver to register the encoded video frame observer before joining the channel.
  3. After joining the channel, get the user IDs of group B users through didJoinedOfUid, and then call setRemoteVideoSubscriptionOptions to set the encodedFrameOnly of this group of users to YES.
  4. Call muteAllRemoteVideoStreams(NO) to start receiving the video streams of all remote users. Then:
Attention:
  • Ensure that you call this method before joining a channel.
  • When handling the video data returned in the callbacks, pay attention to the changes in the width and height parameters, which may be adapted under the following circumstances:
    • When network conditions deteriorate, the video resolution decreases incrementally.
    • If the user adjusts the video profile, the resolution of the video returned in the callbacks also changes.
Tip: After registering the raw video observer, you can use the obtained raw video data in various video pre-processing scenarios, such as implementing virtual backgrounds and image enhacement scenarios by yourself, Agora provides some open source sample projects on GitHub for your reference.

Parameters

delegate
The observer object instance. See AgoraVideoFrameDelegate. To release the instance, set the value as nil.

Returns

  • < 0: Failure.
  • YES: Success.
  • NO: Failure.

destroy

Releases the AgoraRtcEngineKit instance.

+ (void)destroy;

Details

This method releases all resources used by the Agora SDK. Use this method for apps in which users occasionally make voice or video calls. When users do not make calls, you can free up resources for other operations.

After a successful method call, you can no longer use any method or callback in the SDK anymore. If you want to use the real-time communication functions again, you must call sharedEngineWithConfig to create a new AgoraRtcEngineKit instance.

Attention: If you want to create a new AgoraRtcEngineKit instance after destroyingthe current one, ensure that you wait till the destroy method execution to complete.

renewToken

Renews the token.

- (int)renewToken:(NSString * _Nonnull)token;

Details

You can call this method to pass a new token to the SDK. A token expires after a certain period of time. In the following two cases, the app should call this method to pass in a new token. Failure to do so will result in the SDK disconnecting from the server.

Parameters

token
The new token.

Returns

  • 0: Success.
  • < 0: Failure.
    • -2: The parameter is invalid. For example, the token is invalid. You need to fill in a valid parameter.
    • -7: The AgoraRtcEngineKit object has not been initialized. You need to initialize the AgoraRtcEngineKit object before calling this method.

resumeAllEffects

Resumes playing all audio effect files.

- (int)resumeAllEffects;

Returns

  • 0: Success.
  • < 0: Failure.

resumeAudioMixing

Resumes playing and mixing the music file.

- (int)resumeAudioMixing;

Details

This method resumes playing and mixing the music file. Call this method when you are in a channel.

Returns

  • 0: Success.
  • < 0: Failure.

resumeEffect

Resumes playing a specified audio effect.

- (int)resumeEffect:(int)soundId;

Parameters

soundId
The audio effect ID. The ID of each audio effect file is unique.

Returns

  • 0: Success.
  • < 0: Failure.

selectAudioTrack

Selects the audio track used during playback.

- (int)selectAudioTrack:(int)index;

Details

After getting the track index of the audio file, you can call this method to specify any track to play. For example, if different tracks of a multi-track file store songs in different languages, you can call this method to set the playback language.

Attention: You need to call this method after calling getStreamByIndex to get the audio stream index value.

Parameters

index
The index of the audio track.

Returns

  • 0: Success.
  • < 0: Failure.

sendCustomReportMessage

Reports customized messages.

- (int)sendCustomReportMessage:(NSString * _Nullable)messageId
                      category:(NSString * _Nullable)category
                         event:(NSString * _Nullable)event
                         label:(NSString * _Nullable)label
                         value:(NSInteger)value;

Details

Agora supports reporting and analyzing customized messages. This function is in the beta stage with a free trial. The ability provided in its beta test version is reporting a maximum of 10 message pieces within 6 seconds, with each message piece not exceeding 256 bytes and each string not exceeding 100 bytes. To try out this function, contact and discuss the format of customized messages with us.

sendStreamMessage

Sends data stream messages.

- (int)sendStreamMessage:(NSInteger)streamId
                    data:(NSData * _Nonnull)data;

Details

Sends data stream messages to all users in a channel. The SDK has the following restrictions on this method:
  • Up to 30 packets can be sent per second in a channel with each packet having a maximum size of 1 KB.
  • Each client can send up to 6 KB of data per second.
  • Each user can have up to five data streams simultaneously.

A successful method call triggers the receiveStreamMessageFromUid callback on the remote client, from which the remote user gets the stream message. A failed method call triggers the didOccurStreamMessageErrorFromUid callback on the remote client.

Attention:
  • Ensure that you call createDataStream [2/2] to create a data channel before calling this method.
  • In live streaming scenarios, this method only applies to hosts.

Parameters

streamId
The data stream ID. You can get the data stream ID by calling createDataStream [2/2].
data
The message to be sent.

Returns

  • 0: Success.
  • < 0: Failure.

setAdvancedAudioOptions

Sets audio advanced options.

- (int)setAdvancedAudioOptions:(AgoraAdvancedAudioOptions * _Nonnull)options;

Details

If you have advanced audio processing requirements, such as capturing and sending stereo audio, you can call this method to set advanced audio options.

Attention: Call this method after calling joinChannelByToken [2/4], enableAudio and enableLocalAudio.

Parameters

options
The advanced options for audio. See AgoraAdvancedAudioOptions.

Returns

  • 0: Success.
  • < 0: Failure.

setAINSMode

Sets whether to enable the AI ​​noise reduction function and set the noise reduction mode.

- (int)setAINSMode:(BOOL)enabled mode:(AUDIO_AINS_MODE)mode NS_SWIFT_NAME(setAINSMode(_:mode:));

Details

Since
v4.2.0
You can call this method to enable AI noise reduction function. Once enabled, the SDK automatically detects and reduces stationary and non-stationary noise from your audio on the premise of ensuring the quality of human voice. Stationary noise refers to noise signal with constant average statistical properties and negligibly small fluctuations of level within the period of observation. Common sources of stationary noises are:
  • Television;
  • Air conditioner;
  • Machinery, etc.
Non-stationary noise refers to noise signal with huge fluctuations of level within the period of observation. Common sources of non-stationary noises are:
  • Thunder;
  • Explosion;
  • Cracking, etc.

Applicable scenarios

In scenarios such as co-hosting, online education and video meeting, this function can detect and reduce background noises to improve experience.

Parameters

enabled
Whether to enable the AI noise reduction function:
  • YES: Enable the AI noise reduction.
  • NO: (Default) Disable the AI noise reduction.
mode

The AI noise reduction modes. See AUDIO_AINS_MODE.

Returns

  • 0: Success.
  • < 0: Failure.

setAudioEffectParameters

Sets parameters for SDK preset audio effects.

- (int)setAudioEffectParameters:(AgoraAudioEffectPreset)preset param1:(int)param1 param2:(int)param2;

Details

Call this method to set the following parameters for the local user who sends an audio stream:
  • 3D voice effect: Sets the cycle period of the 3D voice effect.
  • Pitch correction effect: Sets the basic mode and tonic pitch of the pitch correction effect. Different songs have different modes and tonic pitches. Agora recommends bounding this method with interface elements to enable users to adjust the pitch correction interactively.

After setting the audio parameters, all users in the channel can hear the effect.

Attention:

Parameters

preset
The options for SDK preset audio effects:
  • AgoraAudioEffectPresetRoomAcous3DVoice, 3D voice effect:
    • Call setAudioProfile [1/2] and set the profile parameter in to AgoraAudioProfileMusicStandardStereo(3) or AgoraAudioProfileMusicHighQualityStereo(5) before setting this enumerator; otherwise, the enumerator setting does not take effect.
    • If the 3D voice effect is enabled, users need to use stereo audio playback devices to hear the anticipated voice effect.
  • AgoraAudioEffectPresetPitchCorrection, Pitch correction effect: To achieve better audio effect quality, Agora recommends setting the profile parameter in setAudioProfile [1/2] to AgoraAudioProfileMusicHighQuality(4) or AgoraAudioProfileMusicHighQualityStereo(5) before setting this enumerator.
param1
  • If you set preset to AgoraAudioEffectPresetRoomAcous3DVoice, param1 sets the cycle period of the 3D voice effect. The value range is [1,60] and the unit is seconds. The default value is 10, indicating that the voice moves around you every 10 seconds.
  • If you set preset to AgoraAudioEffectPresetPitchCorrection, param1 indicates the basic mode of the pitch correction effect:
    • 1: (Default) Natural major scale.
    • 2: Natural minor scale.
    • 3: Japanese pentatonic scale.
param2
  • If you set preset to AgoraAudioEffectPresetRoomAcous3DVoice , you need to set param2 to 0.
  • If you set preset to AgoraAudioEffectPresetPitchCorrection, param2 indicates the tonic pitch of the pitch correction effect:
    • 1: A
    • 2: A#
    • 3: B
    • 4: (Default) C
    • 5: C#
    • 6: D
    • 7: D#
    • 8: E
    • 9: F
    • 10: F#
    • 11: G
    • 12: G#

Returns

  • 0: Success.
  • < 0: Failure.

setAudioEffectPreset

Sets an SDK preset audio effect.

- (int)setAudioEffectPreset:(AgoraAudioEffectPreset)preset;

Details

Call this method to set an SDK preset audio effect for the local user who sends an audio stream. This audio effect does not change the gender characteristics of the original voice. After setting an audio effect, all users in the channel can hear the effect.

To get better audio effect quality, Agora recommends setting the scenario parameter of setAudioProfile [1/2] as AgoraAudioScenarioGameStreaming(3) before calling this method.

Attention:
  • You can call this method either before or after joining a channel.
  • Do not set the profile parameter in setAudioProfile [1/2] to AgoraAudioProfileSpeechStandard(1), or the method does not take effect.
  • This method has the best effect on human voice processing, and Agora does not recommend calling this method to process audio data containing music.
  • If you call setAudioEffectPreset and set enumerators except for AgoraAudioEffectPresetRoomAcous3DVoice or AgoraAudioEffectPresetPitchCorrection, do not call setAudioEffectParameters; otherwise, setAudioEffectPreset is overridden.
  • After calling setAudioEffectPreset, Agora does not recommend you to call the following methods, otherwise the effect set by setAudioEffectPreset will be overwritten:
  • This method relies on the voice beautifier dynamic library AgoraAudioBeautyExtension.xcframework. If the dynamic library is deleted, the function cannot be enabled normally.

Parameters

preset
The options for SDK preset audio effects. See AgoraAudioEffectPreset.

Returns

  • 0: Success.
  • < 0: Failure.

setAudioMixingDualMonoMode

Sets the channel mode of the current audio file.

- (int)setAudioMixingDualMonoMode:(AgoraAudioMixingDualMonoMode)mode;

Details

In a stereo music file, the left and right channels can store different audio data. According to your needs, you can set the channel mode to original mode, left channel mode, right channel mode, or mixed channel mode. For example, in the KTV scenario, the left channel of the music file stores the musical accompaniment, and the right channel stores the singing voice. If you only need to listen to the accompaniment, call this method to set the channel mode of the music file to left channel mode; if you need to listen to the accompaniment and the singing voice at the same time, call this method to set the channel mode to mixed channel mode.

Attention:

Parameters

mode
The channel mode. See AgoraAudioMixingDualMonoMode.

Returns

  • 0: Success.
  • < 0: Failure.

setAudioMixingPitch

Sets the pitch of the local music file.

- (int)setAudioMixingPitch:(NSInteger)pitch;

Details

When a local music file is mixed with a local human voice, call this method to set the pitch of the local music file only.

Attention: You need to call this method after calling startAudioMixing [2/2] and receiving the audioMixingStateChanged(AgoraAudioMixingStateTypePlaying) callback.

Parameters

pitch
Sets the pitch of the local music file by the chromatic scale. The default value is 0, which means keeping the original pitch. The value ranges from -12 to 12, and the pitch value between consecutive values is a chromatic value. The greater the absolute value of this parameter, the higher or lower the pitch of the local music file.

Returns

  • 0: Success.
  • < 0: Failure.

setAudioMixingPosition

Sets the audio mixing position.

- (int)setAudioMixingPosition:(NSInteger)pos;

Details

Call this method to set the playback position of the music file to a different starting position (the default plays from the beginning).

Attention: You need to call this method after calling startAudioMixing [2/2] and receiving the audioMixingStateChanged(AgoraAudioMixingStateTypePlaying) callback.

Parameters

pos
Integer. The playback position (ms).

Returns

  • 0: Success.
  • < 0: Failure.

setAudioProfile [1/2]

Sets the audio profile and audio scenario.

- (int)setAudioProfile:(AgoraAudioProfile)profile scenario:(AgoraAudioScenario)scenario;

Details

Deprecated:
This method is deprecated. If you need to set the audio profile, use setAudioProfile [2/2]; if you need to set the audio scenario, use setAudioScenario.
Attention:
  • You can call this method either before or after joining a channel.
  • In scenarios requiring high-quality audio, such as online music tutoring, Agora recommends you set profile as AgoraAudioProfileMusicHighQuality(4)and scenario as AgoraAudioScenarioGameStreaming(3).

Parameters

profile

The audio profile, including the sampling rate, bitrate, encoding mode, and the number of channels. See AgoraAudioProfile.

scenario
The audio scenarios. See AgoraAudioScenario. Under different audio scenarios, the device uses different volume types.

Returns

  • 0: Success.
  • < 0: Failure.

setAudioProfile [2/2]

Sets the audio parameters and application scenarios.

- (int)setAudioProfile:(AgoraAudioProfile)profile;

Details

Attention:
  • You can call this method either before or after joining a channel.
  • In scenarios requiring high-quality audio, such as online music tutoring, Agora recommends you set profile as AgoraAudioProfileMusicHighQuality(4).
  • If you need to set the audio scenario, you can either call setAudioScenario, or sharedEngineWithConfig and set the audioScenario in AgoraRtcEngineConfig.

Parameters

profile

The audio profile, including the sampling rate, bitrate, encoding mode, and the number of channels. See AgoraAudioProfile.

Returns

  • 0: Success.
  • < 0: Failure.

setAudioScenario

Sets audio scenarios.

- (int)setAudioScenario:(AgoraAudioScenario)scenario;

Details

Note: You can call this method either before or after joining a channel.

Parameters

scenario
The audio scenarios. See AgoraAudioScenario. Under different audio scenarios, the device uses different volume types.

Returns

  • 0: Success.
  • < 0: Failure.

setBeautyEffectOptions

Sets the image enhancement options.

- (int)setBeautyEffectOptions:(BOOL)enable options:(AgoraBeautyOptions* _Nullable)options;

Details

Enables or disables image enhancement, and sets the options.

Note:
  • Call this method before calling enableVideo or startPreview.
  • This method relies on the video enhancement dynamic library AgoraClearVisionExtension.xcframework. If the dynamic library is deleted, the function cannot be enabled normally.

Parameters

enable
Whether to enable the image enhancement function:
  • YES: Enable the image enhancement function.
  • NO: (Default) Disable the image enhancement function.
options
The image enhancement options. See AgoraBeautyOptions.

Returns

  • 0: Success.
  • < 0: Failure.

setCameraAutoFocusFaceModeEnabled

Enables the camera auto-face focus function.

- (BOOL)setCameraAutoFocusFaceModeEnabled:(BOOL)enable;

Details

The SDK enables face autofocus by default. To set face autofocus, call this method.

Attention:

Parameters

enable
Whether to enable face autofocus:
  • YES: Enable the camera auto-face focus function.
  • NO: Disable face autofocus.

Returns

  • YES: Success.
  • NO: Failure.

setCameraExposurePosition

Sets the camera exposure position.

- (BOOL)setCameraExposurePosition:(CGPoint)positionInView;

Details

This method needs to be called after the camera is started (for example, by calling startPreview or joinChannelByToken [2/4]).

After a successful method call, the SDK triggers the cameraExposureDidChangedToRect callback.

Parameters

positionInView
The horizontal coordinate of the touchpoint in the view.

Returns

  • 0: Success.
  • < 0: Failure.

setCameraTorchOn

Enables the camera flash.

- (BOOL)setCameraTorchOn:(BOOL)isOn NS_SWIFT_NAME(setCameraTorchOn(_:));

Details

Attention:

Parameters

isOn
Whether to turn on the camera flash:
  • YES: Turn on the flash.
  • NO: (Default) Turn off the flash.

Returns

  • 0: Success.
  • < 0: Failure.

setCameraZoomFactor

Sets the camera zoom ratio.

- (CGFloat)setCameraZoomFactor:(CGFloat)zoomFactor;

Details

Attention:

Parameters

zoomFactor
The camera zoom ratio. The value ranges between 1.0 and the maximum zoom supported by the device. You can get the maximum zoom ratio supported by the device by calling the getCameraMaxZoomFactor method.

Returns

  • The camera zoom factor value, if successful.
  • < 0: if the method if failed.

setChannelProfile

Sets the channel profile.

- (int)setChannelProfile:(AgoraChannelProfile)profile;

Details

After initializing the SDK, the default channel profile is the live streaming profile. You can call this method to set the usage scenario of the channel. For example, it prioritizes smoothness and low latency for a video call, and prioritizes video quality for the interactive live video streaming.

Attention:
  • To ensure the quality of real-time communication, Agora recommends that all users in a channel use the same channel profile.
  • This method must be called and set before joinChannelByToken [2/4], and cannot be set again after joining the channel.
  • The default audio route and video encoding bitrate are different in different channel profiles. See setDefaultAudioRouteToSpeakerphone and setVideoEncoderConfiguration.

Parameters

profile

The channel profile. See AgoraChannelProfile.

Returns

  • 0(ERR_OK): Success.
  • < 0: Failure.
    • -2: The parameter is invalid.
    • -7: The SDK is not initialized.

setClientRole [1/2]

Sets the client role.

- (int)setClientRole:(AgoraClientRole)role;

Details

You can call this method either before or after joining the channel to set the user role as audience or host.

If you call this method to set the user's role as the host before joining the channel and set the local video property through the setupLocalVideo method, the local video preview is automatically enabled when the user joins the channel.

If you call this method to switch the user role after joining the channel, the SDK triggers the following callbacks:

Parameters

role

The user role. See AgoraClientRole.

Returns

  • 0: Success.
  • < 0: Failure.
    • -1: A general error occurs (no specified reason).
    • -2: The parameter is invalid.
    • -7: The SDK is not initialized.

setClientRole [2/2]

Sets the user role and level in an interactive live streaming channel.

- (int)setClientRole:(AgoraClientRole)role options:(AgoraClientRoleOptions * _Nullable)options;

Details

In the interactive live streaming profile, the SDK sets the user role as audience by default. You can call this method to set the user role as host.

You can call this method either before or after joining a channel.

If you call this method to set the user's role as the host before joining the channel and set the local video property through the setupLocalVideo method, the local video preview is automatically enabled when the user joins the channel.

If you call this method to switch the user role after joining a channel, the SDK automatically does the following:
The difference between this method and setClientRole [1/2] is that this method can set the user level in addition to the user role.
  • The user role (role) determines the permissions that the SDK grants to a user, such as permission to send local streams, receive remote streams, and push streams to a CDN address.
  • The user level (level) determines the level of services that a user can enjoy within the permissions of the user's role. For example, an audience member can choose to receive remote streams with low latency or ultra-low latency. User level affects the pricing of services.
Attention: This method applies to the interactive live streaming profile (the profile parameter of setChannelProfile is AgoraChannelProfileLiveBroadcasting) only.

Parameters

role
The user role in the interactive live streaming. See AgoraClientRole.
options
The detailed options of a user, including the user level. See AgoraClientRoleOptions.

Returns

  • 0: Success.
  • < 0: Failure.
    • -1: A general error occurs (no specified reason).
    • -2: The parameter is invalid.
    • -5: The request is rejected.
    • -7: The SDK is not initialized.

setCloudProxy

Sets up cloud proxy service.

- (int)setCloudProxy:(AgoraCloudProxyType)proxyType NS_SWIFT_NAME(setCloudProxy(_:));

Details

When users' network access is restricted by a firewall, configure the firewall to allow specific IP addresses and ports provided by Agora; then, call this method to enable the cloud proxyType and set the cloud proxy type with the proxyType parameter.

After successfully connecting to the cloud proxy, the SDK triggers the connectionChangedToState (AgoraConnectionStateConnecting, AgoraConnectionChangedReasonSettingProxyServer) callback.

To disable the cloud proxy that has been set, call the setCloudProxy (AgoraNoneProxyType).

To change the cloud proxy type that has been set, call the setCloudProxy (AgoraNoneProxyType) first, and then call the setCloudProxy to set the proxyType you want.

Attention:
  • Agora recommends that you call this method after joining a channel.
  • When a user is behind a firewall and uses the Force UDP cloud proxy, the services for Media Push and cohosting across channels are not available.
  • When you use the Force TCP cloud proxy, note that an error would occur when calling the startAudioMixing [2/2] method to play online music files in the HTTP protocol. The services for Media Push and cohosting across channels use the cloud proxy with the TCP protocol.

Parameters

proxyType

The type of the cloud proxy. See AgoraCloudProxyType.

This parameter is mandatory. The SDK reports an error if you do not pass in a value.

Returns

  • 0: Success.
  • < 0: Failure.
    • -2: The parameter is invalid.
    • -7: The SDK is not initialized.

setColorEnhanceOptions

Sets color enhancement.

- (int)setColorEnhanceOptions:(BOOL)enable options:(AgoraColorEnhanceOptions* _Nullable)options NS_SWIFT_NAME(setColorEnhanceOptions(_:options:));

Details

The video images captured by the camera can have color distortion. The color enhancement feature intelligently adjusts video characteristics such as saturation and contrast to enhance the video color richness and color reproduction, making the video more vivid.

You can call this method to enable the color enhancement feature and set the options of the color enhancement effect.

Attention:
  • Call this method after calling enableVideo.
  • The color enhancement feature has certain performance requirements on devices. With color enhancement turned on, Agora recommends that you change the color enhancement level to one that consumes less performance or turn off color enhancement if your device is experiencing severe heat problems.
  • Both this method and setExtensionPropertyWithVendor can enable color enhancement:
    • When you use the SDK to capture video, Agora recommends this method (this method only works for video captured by the SDK).
    • When you use an external video source to implement custom video capture, or send an external video source to the SDK, Agora recommends using setExtensionPropertyWithVendor.
  • This method relies on the video enhancement dynamic library AgoraClearVisionExtension.xcframework. If the dynamic library is deleted, the function cannot be enabled normally.

Parameters

enable
Whether to enable color enhancement:
  • YES Enable color enhancement.
  • NO: (Default) Disable color enhancement.
options
The color enhancement options. See AgoraColorEnhanceOptions.

Returns

  • 0: Success.
  • < 0: Failure.

setDefaultAudioRouteToSpeakerphone

Sets the default audio playback route.

- (int)setDefaultAudioRouteToSpeakerphone:(BOOL)defaultToSpeaker;

Details

Most mobile phones have two audio routes: an earpiece at the top, and a speakerphone at the bottom. The earpiece plays at a lower volume, and the speakerphone at a higher volume. When setting the default audio route, you determine whether audio playback comes through the earpiece or speakerphone when no external audio device is connected.

In different scenarios, the default audio routing of the system is also different. See the following:
  • Voice call: Earpiece.
  • Audio broadcast: Speakerphone.
  • Video call: Speakerphone.
  • Video broadcast: Speakerphone.

You can call this method to change the default audio route. After a successful method call, the SDK triggers the didAudioRouteChanged callback.

Note:

The system audio route changes when an external audio device, such as a headphone or a Bluetooth audio device, is connected. See Audio Route for detailed change principles.

Parameters

defaultToSpeaker
Whether to set the speakerphone as the default audio route:
  • YES: Set the speakerphone as the default audio route.
  • NO: Set the earpiece as the default audio route.

Returns

  • 0: Success.
  • < 0: Failure.

setDualStreamMode [1/2]

Sets the dual-stream mode on the sender side.

- (int)setDualStreamMode:(AgoraSimulcastStreamMode)mode;

Details

Since
v4.0.1
The SDK enables the low-quality video stream auto mode on the sender side by default (not actively sending low-quality video streams). The host at the receiving end can call setRemoteVideoStream to initiate a low-quality video stream request on the receiving end, and the sender automatically switches to the low-quality video stream mode after receiving the request.
  • If you want to modify this behavior, you can call this method and modify the mode to AgoraDisableSimulcastStream (never send low-quality video streams) or AgoraEnableSimulcastStream (always send low-quality video streams).
  • If you want to restore the default behavior after making changes, you can call this method again with mode set to AgoraAutoSimulcastStream.
Note: The difference and connection between this method and enableDualStreamMode [1/2] is as follows:
  • When calling this method and setting mode to AgoraDisableSimulcastStream, it has the same effect as enableDualStreamMode [1/2](NO).
  • When calling this method and setting mode to AgoraEnableSimulcastStream, it has the same effect as enableDualStreamMode [1/2](YES).
  • Both methods can be called before and after joining a channel. If both methods are used, the settings in the method called later takes precedence.

Parameters

mode
The mode in which the video stream is sent. See AgoraSimulcastStreamMode.

Returns

  • 0: Success.
  • < 0: Failure.

setDualStreamMode [2/2]

Sets dual-stream mode configuration on the sender, and sets the low-quality video stream.

- (int)setDualStreamMode:(AgoraSimulcastStreamMode)mode
            streamConfig:(AgoraSimulcastStreamConfig* _Nonnull)streamConfig;

Details

Since
v4.0.1

The SDK enables the low-quality video stream auto mode on the sender by default, which is equivalent to calling this method and setting the mode to AgoraAutoSimulcastStream. If you want to modify this behavior, you can call this method and modify the mode to AgoraDisableSimulcastStream (never send low-quality video streams) or AgoraEnableSimulcastStream (always send low-quality video streams).

The difference between this method and setDualStreamMode [1/2] is that this method can also configure the low-quality video stream, and the SDK sends the stream according to the configuration in streamConfig.

Note: The difference and connection between this method and enableDualStreamMode [1/2] is as follows:
  • When calling this method and setting mode to AgoraDisableSimulcastStream, it has the same effect as enableDualStreamMode [1/2](NO).
  • When calling this method and setting mode to AgoraEnableSimulcastStream, it has the same effect as enableDualStreamMode [1/2](YES).
  • Both methods can be called before and after joining a channel. If both methods are used, the settings in the method called later takes precedence.

Parameters

mode
The mode in which the video stream is sent. See AgoraSimulcastStreamMode.
streamConfig

The configuration of the low-quality video stream. See AgoraSimulcastStreamConfig.

Note: When setting mode to AgoraDisableSimulcastStream, setting streamConfig will not take effect.

Returns

  • 0: Success.
  • < 0: Failure.

setEarMonitoringAudioFrameParametersWithSampleRate

Sets the format of the in-ear monitoring raw audio data.

- (int)setEarMonitoringAudioFrameParametersWithSampleRate:(NSInteger)sampleRate
                                                  channel:(NSInteger)channel
                                                     mode:(AgoraAudioRawFrameOperationMode)mode
                                           samplesPerCall:(NSInteger)samplesPerCall;

Details

This method is used to set the in-ear monitoring audio data format reported by the onEarMonitoringAudioFrame callback.

Attention:
  • Before calling this method, you need to call enableInEarMonitoring [2/2], and set includeAudioFilters to AgoraEarMonitoringFilterBuiltInAudioFilters or AgoraEarMonitoringFilterNoiseSuppression.
  • The SDK calculates the sampling interval based on the samplesPerCall, sampleRate and channel parameters set in this method.Sample interval (sec) = samplePerCall/(sampleRate × channel). Ensure that the sample interval ≥ 0.01 (s). The SDK triggers the onEarMonitoringAudioFrame callback according to the sampling interval.

Parameters

sampleRate
The sample rate of the audio data reported in the onEarMonitoringAudioFrame callback, which can be set as 8,000, 16,000, 32,000, 44,100, or 48,000 Hz.
channel
The number of audio channels reported in the onEarMonitoringAudioFrame callback.
  • 1: Mono.
  • 2: Stereo.
mode

The use mode of the audio frame. See AgoraAudioRawFrameOperationMode.

samplesPerCall
The number of data samples reported in the onEarMonitoringAudioFrame callback, such as 1,024 for the Media Push.

Returns

  • 0: Success.
  • < 0: Failure.

setEffectPosition

Sets the playback position of an audio effect file.

- (int)setEffectPosition:(int)soundId pos:(NSInteger)pos NS_SWIFT_NAME(setEffectPosition(_:pos:));

Details

After a successful setting, the local audio effect file starts playing at the specified position.

Attention: Call this method after playEffect.

Parameters

soundId
The audio effect ID. The ID of each audio effect file is unique.
pos
The playback position (ms) of the audio effect file.

Returns

  • 0: Success.
  • < 0: Failure.

setEffectsVolume

Sets the volume of the audio effects.

- (int)setEffectsVolume:(NSInteger)volume;

Details

Attention: Call this method after playEffect [3/3].

Parameters

volume
The playback volume. The value range is [0, 100]. The default value is 100, which represents the original volume.

Returns

  • 0: Success.
  • < 0: Failure.

setEnableSpeakerphone

Enables/Disables the audio route to the speakerphone.

- (int)setEnableSpeakerphone:(BOOL)enableSpeaker;

Details

If the default audio route of the SDK (see Set the Audio Route) or the setting in setDefaultAudioRouteToSpeakerphone cannot meet your requirements, you can call setEnableSpeakerphone to switch the current audio route. After a successful method call, the SDK triggers the didAudioRouteChanged callback.

This method only sets the audio route in the current channel and does not influence the default audio route. If the user leaves the current channel and joins another channel, the default audio route is used.

Attention:
  • Call this method after joining a channel.
  • If the user uses an external audio playback device such as a Bluetooth or wired headset, this method does not take effect, and the SDK plays audio through the external device. When the user uses multiple external devices, the SDK plays audio through the last connected device.

Parameters

enableSpeaker
Sets whether to enable the speakerphone or earpiece:
  • YES: Enable device state monitoring. The audio route is the speakerphone.
  • NO: Disable device state monitoring. The audio route is the earpiece.

Returns

  • 0: Success.
  • < 0: Failure.

setEncryptionMode

Sets the built-in encryption mode.

- (int)setEncryptionMode:(NSString * _Nullable)encryptionMode;

Details

Deprecated:
Use enableEncryption instead.

The SDK supports built-in encryption schemes, AES-128-GCM is supported by default. Call this method to use other encryption modes. All users in the same channel must use the same encryption mode and secret. Refer to the information related to the AES encryption algorithm on the differences between the encryption modes.

Attention: Before calling this method, please call setEncryptionSecret to enable the built-in encryption function.

Parameters

encryptionMode
The following encryption modes:
  • "aes-128-xts": 128-bit AES encryption, XTS mode.
  • "aes-128-ecb": 128-bit AES encryption, ECB mode.
  • "aes-256-xts": 256-bit AES encryption, XTS mode.
  • "sm4-128-ecb": 128-bit SM4 encryption, ECB mode.
  • "aes-128-gcm": 128-bit AES encryption, GCM mode.
  • "aes-256-gcm": 256-bit AES encryption, GCM mode.
  • "": When this parameter is set as null, the encryption mode is set as "aes-128-gcm" by default.

Returns

  • 0: Success.
  • < 0: Failure.

setEncryptionSecret

Enables built-in encryption with an encryption password before users join a channel.

- (int)setEncryptionSecret:(NSString * _Nullable)secret;

Details

Deprecated:
Use enableEncryption instead.

Before joining the channel, you need to call this method to set the secret parameter to enable the built-in encryption. All users in the same channel should use the same secret. The secret is automatically cleared once a user leaves the channel. If you do not specify the secret or secret is set as null, the built-in encryption is disabled.

Attention:
  • Do not use this method for Media Push.
  • For optimal transmission, ensure that the encrypted data size does not exceed the original data size + 16 bytes. 16 bytes is the maximum padding size for AES encryption.

Parameters

secret
The encryption password.

Returns

  • 0: Success.
  • < 0: Failure.

setExtensionPropertyWithVendor

Sets the properties of the extension.

- (int)setExtensionPropertyWithVendor:(NSString * __nonnull)provider extension:(NSString * __nonnull)extension key:(NSString * __nonnull)key value:(NSString * __nonnull)value;

Details

After enabling the extension, you can call this method to set the properties of the extension.

Parameters

provider
The name of the extension provider.
extension
The name of the extension.
key
The key of the extension.
value
The value of the extension key.

Returns

  • 0: Success.
  • < 0: Failure.

setExtensionProviderPropertyWithVendor

Sets the properties of the extension provider.

- (int) setExtensionProviderPropertyWithVendor:(NSString * __nonnull)provider key:(NSString * __nonnull)key value:(NSString * __nonnull)value;

Details

You can call this method to set the attributes of the extension provider and initialize the relevant parameters according to the type of the provider.

Attention:

Call this method after enableExtensionWithVendor, and before enabling the audio (enableAudio/enableLocalAudio) or the video (enableVideo/enableLocalVideo).

Parameters

provider
The name of the extension provider.
key
The key of the extension.
value
The value of the extension key.

Returns

  • 0: Success.
  • < 0: Failure.

enableExternalAudioSink

Sets the external audio sink.

- (void)enableExternalAudioSink:(BOOL)enabled
                     sampleRate:(NSUInteger)sampleRate
                       channels:(NSUInteger)channels;

Details

This method applies to scenarios where you want to use external audio data for playback. After you set the external audio sink, you can call pullPlaybackAudioFrameRawData to pull remote audio frames. The app can process the remote audio and play it with the audio effects that you want.

Parameters

enabled
Whether to enable or disable the external audio sink:
  • YES: Enables the external audio sink.
  • NO: (Default) Disables the external audio sink.
sampleRate

The sample rate (Hz) of the external audio sink, which can be set as 16000, 32000, 44100, or 48000.

channels
The number of audio channels of the external audio sink:
  • 1: Mono.
  • 2: Stereo.

Returns

  • < 0: Failure.

setExternalAudioSource [1/2]

Sets the external audio source.

- (int)setExternalAudioSource:(BOOL)enabled
                   sampleRate:(NSInteger)sampleRate
                     channels:(NSInteger)channels;

Details

Call this method before calling joinChannelByToken [1/4] and startPreview.

Parameters

enabled
  • YES: Enable the external audio source.
  • NO: (Default) Disable the external audio source.
sampleRate
The sample rate (Hz) of the external audio source, which can be set as 8000, 16000, 32000, 44100, or 48000.
channels
The number of audio channels of the external audio source:
  • 1: Mono.
  • 2: Stereo.

Returns

  • 0: Success.
  • < 0: Failure.

setExternalAudioSource [2/2]

Sets the external audio source parameters.

- (int)setExternalAudioSource:(BOOL)enabled
                   sampleRate:(NSInteger)sampleRate
                     channels:(NSInteger)channels
                 sourceNumber:(NSInteger)sourceNumber
                localPlayback:(BOOL)localPlayback
                      publish:(BOOL)publish;

Details

Attention: Call this method before joining a channel.

Parameters

enabled
Whether to enable the external audio source:
  • YES: Enable the external audio source.
  • NO: (Default) Disable the external audio source.
sampleRate
The sample rate (Hz) of the external audio source which can be set as 8000, 16000, 32000, 44100, or 48000.
channels
The number of channels of the external audio source, which can be set as 1 (Mono) or 2 (Stereo).
sourceNumber
The number of external audio sources. The value of this parameter should be larger than 0. The SDK creates a corresponding number of custom audio tracks based on this parameter value and names the audio tracks starting from 0. In AgoraRtcChannelMediaOptions, you can set publishCustomAudioSourceId to the audio track ID you want to publish.
localPlayback
Whether to play the external audio source:
  • YES: Play the external audio source.
  • NO: (Default) Do not play the external source.
publish
Whether to publish audio to the remote users:
  • YES: (Default) Publish audio to the remote users.
  • NO: Do not publish audio to the remote users.

Returns

  • 0: Success.
  • < 0: Failure.

setExternalVideoSource

Configures the external video source.

- (void)setExternalVideoSource:(BOOL)enable useTexture:(BOOL)useTexture sourceType:(AgoraExternalVideoSourceType)sourceType;

Details

Attention: Call this method before joining a channel.

Parameters

enable
Whether to use the external video source:
  • YES: Use the external video source. The SDK prepares to accept the external video frame.
  • NO: (Default) Do not use the external video source.
useTexture
Whether to use the external video frame in the Texture format.
  • YES: Use the external video frame in the Texture format.
  • NO: (Default) Do not use the external video frame in the Texture format.
sourceType
Whether the external video frame is encoded. See AgoraExternalVideoSourceType.

setHeadphoneEQParameters

Sets the low- and high-frequency parameters of the headphone equalizer.

- (int)setHeadphoneEQParameters:(int)lowGain highGain:(int)highGain;

Details

Since
v4.1.0

In a spatial audio effect scenario, if the preset headphone equalization effect is not achieved after calling the setHeadphoneEQPreset method, you can further adjust the headphone equalization effect by calling this method.

Parameters

lowGain
The low-frequency parameters of the headphone equalizer. The value range is [-10,10]. The larger the value, the deeper the sound.
highGain
The high-frequency parameters of the headphone equalizer. The value range is [-10,10]. The larger the value, the sharper the sound.

Returns

  • 0: Success.
  • < 0: Failure.
    • -1: A general error occurs (no specified reason).

setHeadphoneEQPreset

Sets the preset headphone equalization effect.

- (int)setHeadphoneEQPreset:(AgoraHeadphoneEQPreset)preset;

Details

Since
v4.0.1

This method is mainly used in spatial audio effect scenarios. You can select the preset headphone equalizer to listen to the audio to achieve the expected audio experience.

Note: If the headphones you use already have a good equalization effect, you may not get a significant improvement when you call this method, and could even diminish the experience.

Parameters

preset
The preset headphone equalization effect. See AgoraHeadphoneEQPreset.

Returns

  • 0: Success.
  • < 0: Failure.
    • -1: A general error occurs (no specified reason).

setInEarMonitoringVolume

Sets the volume of the in-ear monitor.

- (int)setInEarMonitoringVolume:(NSInteger)volume;

Details

Attention:
  • Users must use wired earphones to hear their own voices.
  • You can call this method either before or after joining a channel.

Parameters

volume
The volume of the in-ear monitor. The value ranges between 0 and 100. The default value is 100.

Returns

  • 0: Success.
  • < 0: Failure.

setLocalRenderMode [1/2]

Sets the local video display mode.

- (int)setLocalRenderMode:(NSUInteger)uid
                     mode:(AgoraVideoRenderMode) mode;

Details

Deprecated:
This method is deprecated. Use setLocalRenderMode [2/2] instead.

Call this method to set the local video display mode. This method can be called multiple times during a call to change the display mode.

Parameters

mode

The local video display mode. See AgoraVideoRenderMode.

uid
The user ID.

Returns

  • 0: Success.
  • < 0: Failure.

setLocalRenderMode [2/2]

Updates the display mode of the local video view.

- (int)setLocalRenderMode:(AgoraVideoRenderMode)mode
                   mirror:(AgoraVideoMirrorMode)mirror;

Details

After initializing the local video view, you can call this method to update its rendering and mirror modes. It affects only the video view that the local user sees, not the published local video stream.

Attention:
  • Ensure that you have called the setupLocalVideo method to initialize the local video view before calling this method.
  • During a call, you can call this method as many times as necessary to update the display mode of the local video view.

Parameters

mode

The local video display mode. See AgoraVideoRenderMode.

mirror

The mirror mode of the local video view. See AgoraVideoMirrorMode.

Attention: If you use a front camera, the SDK enables the mirror mode by default; if you use a rear camera, the SDK disables the mirror mode by default.

Returns

  • 0: Success.
  • < 0: Failure.

setLocalVoiceEqualizationOfBandFrequency

Sets the local voice equalization effect.

- (int)setLocalVoiceEqualizationOfBandFrequency:(AgoraAudioEqualizationBandFrequency)bandFrequency
                    withGain:(NSInteger)gain;

Details

Attention: You can call this method either before or after joining a channel.

Parameters

bandFrequency
The band frequency. The value ranges between 0 and 9; representing the respective 10-band center frequencies of the voice effects, including 31, 62, 125, 250, 500, 1k, 2k, 4k, 8k, and 16k Hz. See AgoraAudioEqualizationBandFrequency.
gain
The gain of each band in dB. The value ranges between -15 and 15. The default value is 0.

Returns

  • 0: Success.
  • < 0: Failure.

setLocalVoiceFormant

Set the formant ratio to change the timbre of human voice.

- (int)setLocalVoiceFormant:(double)formantRatio;

Details

Since
v4.2.0

Formant ratio affects the timbre of voice. The smaller the value, the deeper the sound will be, and the larger, the sharper.

You can call this method to set the formant ratio of local audio to change the timbre of human voice. After you set the formant ratio, all users in the channel can hear the changed voice. If you want to change the timbre and pitch of voice at the same time, Agora recommends using this method together with setLocalVoicePitch.
Attention: You can call this method either before or after joining a channel.

Parameters

formantRatio
The formant ratio. The value range is [-1.0, 1.0]. The default value is 0.0, which means do not change the timbre of the voice.
Note: Agora recommends setting this value within the range of [-0.4, 0.6]. Otherwise, the voice may be seriously distorted.

Returns

  • 0: Success.
  • < 0: Failure.

setLocalVoicePitch

Changes the voice pitch of the local speaker.

- (int)setLocalVoicePitch:(double)pitch;

Details

Attention: You can call this method either before or after joining a channel.

Parameters

pitch
The local voice pitch. The value range is [0.5,2.0]. The lower the value, the lower the pitch. The default value is 1.0 (no change to the pitch).

Returns

  • 0: Success.
  • < 0: Failure.

setLocalVoiceReverbOfType

Sets the local voice reverberation.

- (int)setLocalVoiceReverbOfType:(AgoraAudioReverbType)reverbType withValue:(NSInteger)value;

Details

The SDK provides an easier-to-use method, setAudioEffectPreset, to directly implement preset reverb effects for such as pop, R&B, and KTV.

Note: You can call this method either before or after joining a channel.

Parameters

reverbType
The reverberation key. Agora provides five reverberation keys, see AgoraAudioReverbType.
value
The value of the reverberation key.

Returns

  • 0: Success.
  • < 0: Failure.

setLogFile

Sets the log file.

- (int)setLogFile:(NSString * _Nonnull)filePath;

Details

Deprecated:
Use the mLogConfig parameter in sharedEngineWithConfig method instead.

Specifies an SDK output log file. The log file records all log data for the SDK’s operation. Ensure that the directory for the log file exists and is writable.

Note:

Ensure that you call sharedEngineWithConfig immediately after calling the AgoraRtcEngineKit method, or the output log may not be complete.

Parameters

filePath
The complete path of the log files. These log files are encoded in UTF-8.

Returns

  • 0: Success.
  • < 0: Failure.

setLogFileSize

Sets the log file size.

- (int)setLogFileSize:(NSUInteger)fileSizeInKBytes;

Details

Deprecated:
Use the logConfig parameter in sharedEngineWithConfig instead.

By default, the SDK generates five SDK log files and five API call log files with the following rules:

  • The SDK log files are: agorasdk.log, agorasdk.1.log, agorasdk.2.log, agorasdk.3.log, and agorasdk.4.log.
  • The API call log files are: agoraapi.log, agoraapi.1.log, agoraapi.2.log, agoraapi.3.log, and agoraapi.4.log.
  • The default size for each SDK log file is 1,024 KB; the default size for each API call log file is 2,048 KB. These log files are encoded in UTF-8.
  • The SDK writes the latest logs in agorasdk.log or agoraapi.log.
  • When agorasdk.log is full, the SDK processes the log files in the following order:
    1. Delete the agorasdk.4.log file (if any).
    2. Rename agorasdk.3.log to agorasdk.4.log.
    3. Rename agorasdk.2.log to agorasdk.3.log.
    4. Rename agorasdk.1.log to agorasdk.2.log.
    5. Create a new agorasdk.log file.
  • The overwrite rules for the agoraapi.log file are the same as for agorasdk.log.
Note:

This method is used to set the size of the agorasdk.log file only and does not effect the agoraapi.log file.

Parameters

fileSizeInKBytes

The size (KB) of an agorasdk.log file. The value range is [128,20480]. The default value is 1,024 KB. If you set fileSizeInKByte smaller than 128 KB, the SDK automatically adjusts it to 128 KB; if you set fileSizeInKByte greater than 20,480 KB, the SDK automatically adjusts it to 20,480 KB.

Returns

  • 0: Success.
  • < 0: Failure.

setLogFilter

Sets the log output level of the SDK.

- (int)setLogFilter:(NSUInteger)filter;

Details

Deprecated:
Use logConfig in sharedEngineWithConfig instead.

This method sets the output log level of the SDK. You can use one or a combination of the log filter levels. The log level follows the sequence of AgoraLogFilterOff, AgoraLogFilterCritical, AgoraLogFilterError, AgoraLogFilterWarning, AgoraLogFilterInfo, and AgoraLogFilterDebug. Choose a level to see the logs preceding that level.

If, for example, you set the log level to AgoraLogFilterWarning, you see the logs within levels AgoraLogFilterCritical, AgoraLogFilterError and AgoraLogFilterWarning.

Parameters

filter

The output log level of the SDK. See AgoraLogFilter.

Returns

  • 0: Success.
  • < 0: Failure.

setLogLevel

Sets the output log level of the SDK.

- (int)setLogLevel:(AgoraLogLevel)level;

Details

Deprecated:
This method is deprecated. Use AgoraRtcEngineConfig instead to set the log output level.

Choose a level to see the logs preceding that level.

Parameters

level
The log level: AgoraLogLevel.

Returns

  • 0: Success.
  • < 0: Failure.

setLowlightEnhanceOptions

Sets low-light enhancement.

- (int)setLowlightEnhanceOptions:(BOOL)enable options:(AgoraLowlightEnhanceOptions* _Nullable)options NS_SWIFT_NAME(setLowlightEnhanceOptions(_:options:));

Details

The low-light enhancement feature can adaptively adjust the brightness value of the video captured in situations with low or uneven lighting, such as backlit, cloudy, or dark scenes. It restores or highlights the image details and improves the overall visual effect of the video.

You can call this method to enable the color enhancement feature and set the options of the color enhancement effect.

Attention:
  • Call this method after calling enableVideo.
  • Dark light enhancement has certain requirements for equipment performance. The low-light enhancement feature has certain performance requirements on devices. If your device overheats after you enable low-light enhancement, Agora recommends modifying the low-light enhancement options to a less performance-consuming level or disabling low-light enhancement entirely.
  • Both this method and setExtensionPropertyWithVendor can turn on low-light enhancement:
    • When you use the SDK to capture video, Agora recommends this method (this method only works for video captured by the SDK).
    • When you use an external video source to implement custom video capture, or send an external video source to the SDK, Agora recommends using setExtensionPropertyWithVendor.
  • This method relies on the video enhancement dynamic library AgoraClearVisionExtension.xcframework. If the dynamic library is deleted, the function cannot be enabled normally.

Parameters

enable
Whether to enable low-light enhancement function:
  • YES: Enable low-light enhancement function.
  • NO: (Default) Disable low-light enhancement function.
options
The low-light enhancement options. See AgoraLowlightEnhanceOptions.

Returns

  • 0: Success.
  • < 0: Failure.

setMediaMetadataDataSource

Sets the data source of the metadata.

- (BOOL)setMediaMetadataDataSource:(id<AgoraMediaMetadataDataSource> _Nullable)metadataDataSource withType:(AgoraMetadataType)type;

Details

You need to implement the AgoraMediaMetadataDataSource protocol in this method and specify the data format of the metadata. After a successful method call, the SDK triggers the metadataMaxSize callback.

This method can be used with setMediaMetadataDelegate to add synchronized metadata in the video stream for more diversified live interactions, such as sending shopping links, digital coupons, and online quizzes.

Attention: Call this method before joining a channel.

Parameters

metadataDataSource
The AgoraMediaMetadataDataSource protocol.
type

The metadata type. The SDK currently only supports AgoraMetadataTypeVideo. See AgoraMetadataType.

Returns

  • YES: Success.
  • NO: Failure.

setMixedAudioFrameParametersWithSampleRate

Sets the audio data format reported by onMixedAudioFrame.

- (int)setMixedAudioFrameParametersWithSampleRate:(NSInteger)sampleRate
                                          channel:(NSInteger)channel
                                   samplesPerCall:(NSInteger)samplesPerCall;

Parameters

sampleRate

The sample rate (Hz) of the audio data, which can be set as 8000, 16000, 32000, 44100, or 48000.

channel

The number of channels of the audio data, which can be set as 1(Mono) or 2(Stereo).

samplesPerCall

Sets the number of samples. In Media Push scenarios, set it as 1024.

Note:

The SDK triggers the onMixedAudioFrame callback according to the sample interval. Sampleinterval (sec) = samplePerCall/(sampleRate × channel) Ensure that the value of sample interval more than or equal to 0.01.

Returns

  • 0: Success.
  • < 0: Failure.

setParameters

Provides technical preview functionalities or special customizations by configuring the SDK with JSON options.

- (int)setParameters:(NSString * _Nonnull)options NS_SWIFT_NAME(setParameters(_:));

Parameters

options
Pointer to the set parameters in a JSON string.

Returns

  • 0: Success.
  • < 0: Failure.

setPlaybackAudioFrameBeforeMixingParametersWithSampleRate

Sets the audio data format reported by onPlaybackAudioFrameBeforeMixing.

- (int)setPlaybackAudioFrameBeforeMixingParametersWithSampleRate:(NSInteger)sampleRate
                                                         channel:(NSInteger)channel;

Parameters

sampleRate

The sample rate (Hz) of the audio data, which can be set as 8000, 16000, 32000, 44100, or 48000.

channel

The number of channels of the external audio source, which can be set as 1(Mono) or 2(Stereo).

Returns

  • 0: Success.
  • < 0: Failure.

setPlaybackAudioFrameParametersWithSampleRate

Sets the audio data format for playback.

- (int)setPlaybackAudioFrameParametersWithSampleRate:(NSInteger)sampleRate
                                             channel:(NSInteger)channel
                                                mode:(AgoraAudioRawFrameOperationMode)mode
                                      samplesPerCall:(NSInteger)samplesPerCall;

Details

Sets the data format for the onPlaybackAudioFrame callback.

Attention:
  • Ensure that you call this method before joining a channel.
  • The SDK calculates the sampling interval based on the samplesPerCall, sampleRate and channel parameters set in this method.Sample interval (sec) = samplePerCall/(sampleRate × channel). Ensure that the sample interval ≥ 0.01 (s). The SDK triggers the callback according to the sampling interval.onPlaybackAudioFrame

Parameters

sampleRate
The sample rate returned in the onPlaybackAudioFrame callback, which can be set as 8000, 16000, 32000, 44100, or 48000 Hz.
channel
The number of channels returned in the onPlaybackAudioFrame callback:
  • 1: Mono.
  • 2: Stereo.
mode

The use mode of the audio frame. See AgoraAudioRawFrameOperationMode.

samplesPerCall
The number of data samples returned in the onPlaybackAudioFrame callback, such as 1024 for the Media Push.

Returns

  • 0: Success.
  • < 0: Failure.

setRecordingAudioFrameParametersWithSampleRate

Sets the format of the captured raw audio data.

- (int)setRecordingAudioFrameParametersWithSampleRate:(NSInteger)sampleRate
                                              channel:(NSInteger)channel
                                                 mode:(AgoraAudioRawFrameOperationMode)mode
                                       samplesPerCall:(NSInteger)samplesPerCall;

Details

Sets the audio format for the onRecordAudioFrame callback.

Attention:
  • Ensure that you call this method before joining a channel.
  • The SDK calculates the sampling interval based on the samplesPerCall, sampleRate and channel parameters set in this method.Sample interval (sec) = samplePerCall/(sampleRate × channel). Ensure that the sample interval ≥ 0.01 (s). The SDK triggers the onRecordAudioFrame callback according to the sampling interval.

Parameters

sampleRate
The sample rate returned in the onRecordAudioFrame callback, which can be set as 8000, 16000, 32000, 44100, or 48000 Hz.
channel
The number of channels returned in the onRecordAudioFrame callback:
  • 1: Mono.
  • 2: Stereo.
mode

The use mode of the audio frame. See AgoraAudioRawFrameOperationMode.

samplesPerCall
The number of data samples returned in the onRecordAudioFrame callback, such as 1024 for the Media Push.

Returns

  • 0: Success.
  • < 0: Failure.

setRemoteDefaultVideoStreamType

Sets the default stream type of subscrption for remote video streams.

- (int)setRemoteDefaultVideoStreamType:(AgoraVideoStreamType)streamType;

Details

Under limited network conditions, if the publisher has not disabled the dual-stream mode using enableDualStreamMode [2/2] (NO), the receiver can choose to receive either the high-quality video stream or the low-quality video stream. The high-quality video stream has a higher resolution and bitrate, and the low-quality video stream has a lower resolution and bitrate.

By default, users receive the high-quality video stream. Call this method if you want to switch to the low-quality video stream. This method allows the app to adjust the corresponding video stream type based on the size of the video window to reduce the bandwidth and resources. The aspect ratio of the low-quality video stream is the same as the high-quality video stream. Once the resolution of the high-quality video stream is set, the system automatically sets the resolution, frame rate, and bitrate of the low-quality video stream.

The SDK enables the low-quality video stream auto mode on the sender by default (not actively sending low-quality video streams). The host at the receiving end can call this method to initiate a low-quality video stream stream request on the receiving end, and the sender automatically switches to the low-quality video stream mode after receiving the request.

Attention:
  • Call this method before joining a channel. The SDK does not support changing the default subscribed video stream type after joining a channel.
  • If you call both this method and setRemoteVideoStream, the SDK applies the settings in the setRemoteVideoStream method.

Parameters

streamType

The default video-stream type. See AgoraVideoStreamType.

Returns

  • 0: Success.
  • < 0: Failure.

setRemoteRenderMode [1/2]

Sets the video display mode of a specified remote user.

- (int)setRemoteRenderMode:(NSUInteger)uid
                      mode:(AgoraVideoRenderMode) mode;

Details

Deprecated:
This method is deprecated. Use setRemoteRenderMode [2/2] instead.

Call this method to set the video display mode of a specified remote user. This method can be called multiple times during a call to change the display mode.

Parameters

userId
The user ID of the remote user.
renderMode

The rendering mode of the remote user view. For details, see AgoraVideoRenderMode.

Returns

  • 0: Success.
  • < 0: Failure.

setRemoteRenderMode [2/2]

Updates the display mode of the video view of a remote user.

- (int)setRemoteRenderMode:(NSUInteger)uid
                      mode:(AgoraVideoRenderMode)mode
                    mirror:(AgoraVideoMirrorMode)mirror;

Details

After initializing the video view of a remote user, you can call this method to update its rendering and mirror modes. This method affects only the video view that the local user sees.

Attention:
  • Call this method after initializing the remote view by calling the setupRemoteVideo method.
  • During a call, you can call this method as many times as necessary to update the display mode of the video view of a remote user.

Parameters

uid
The user ID of the remote user.
mode

The rendering mode of the remote user view. For details, see AgoraVideoRenderMode.

mirror

The mirror mode of the remote user view. See AgoraVideoMirrorMode.

Returns

  • 0: Success.
  • < 0: Failure.

setRemoteVideoStream

Sets the stream type of the remote video.

- (int)setRemoteVideoStream:(NSUInteger)uid
                       type:(AgoraVideoStreamType)streamType;

Details

Under limited network conditions, if the publisher has not disabled the dual-stream mode using enableDualStreamMode [2/2](NO), the receiver can choose to receive either the high-quality video stream or the low-quality video stream. The high-quality video stream has a higher resolution and bitrate, and the low-quality video stream has a lower resolution and bitrate.

By default, users receive the high-quality video stream. Call this method if you want to switch to the low-quality video stream. This method allows the app to adjust the corresponding video stream type based on the size of the video window to reduce the bandwidth and resources. The aspect ratio of the low-quality video stream is the same as the high-quality video stream. Once the resolution of the high-quality video stream is set, the system automatically sets the resolution, frame rate, and bitrate of the low-quality video stream.

The SDK enables the low-quality video stream auto mode on the sender by default (not actively sending low-quality video streams). The host at the receiving end can call this method to initiate a low-quality video stream stream request on the receiving end, and the sender automatically switches to the low-quality video stream mode after receiving the request.

Attention: You can call this method either before or after joining a channel. If you call both setRemoteVideoStream and setRemoteDefaultVideoStreamType, the setting of setRemoteVideoStream takes effect.

Parameters

uid
The user ID.
streamType

The video stream type: AgoraVideoStreamType.

Returns

  • 0: Success.
  • < 0: Failure.

setRemoteVideoSubscriptionOptions

Options for subscribing to remote video streams.

- (int)setRemoteVideoSubscriptionOptions:(NSUInteger)uid
                                 options:(AgoraVideoSubscriptionOptions* _Nonnull)options NS_SWIFT_NAME(setRemoteVideoSubscriptionOptions(_:options:));

Details

When a remote user has enabled dual-stream mode, you can call this method to choose the option for subscribing to the video streams sent by the remote user.

  • If you only register one AgoraVideoFrameDelegate object, the SDK subscribes to the raw video data and encoded video data by default (the effect is equivalent to setting encodedFrameOnly to NO).
  • If you only register one AgoraEncodedVideoFrameDelegate object, the SDK only subscribes to the encoded video data by default (the effect is equivalent to setting encodedFrameOnly to YES).
  • If you register one AgoraVideoFrameDelegate object and one AgoraEncodedVideoFrameDelegate object successively, the SDK subscribes to the encoded video data by default (the effect is equivalent to setting encodedFrameOnly to NO).
  • If you call this method first with the options parameter set, and then register one AgoraVideoFrameDelegate or AgoraEncodedVideoFrameDelegate object, you need to call this method again and set the options parameter as described in the above two items to get the desired results.
Note: Agora recommends the following steps:
  1. Set autoSubscribeVideo to NO when calling joinChannelByToken [2/4] to join a channel.
  2. Call this method after receiving the didJoinedOfUid callback to set the subscription options for the specified remote user's video stream.
  3. Call the muteRemoteVideoStream method to resume subscribing to the video stream of the specified remote user. If you set encodedFrameOnly to YES in the previous step, the SDK triggers the onEncodedVideoFrameReceived callback locally to report the received encoded video frame information.

Parameters

uid
The user ID of the remote user.
options
The video subscription options. See AgoraVideoSubscriptionOptions.

Returns

  • 0: Success.
  • < 0: Failure.

setRemoteVoicePosition

Sets the 2D position (the position on the horizontal plane) of the remote user's voice.

- (int)setRemoteVoicePosition:(NSUInteger)uid pan:(double)pan gain:(double)gain;

Details

This method sets the 2D position and volume of a remote user, so that the local user can easily hear and identify the remote user's position.

When the local user calls this method to set the voice position of a remote user, the voice difference between the left and right channels allows the local user to track the real-time position of the remote user, creating a sense of space. This method applies to massive multiplayer online games, such as Battle Royale games.

Attention:
  • For this method to work, enable stereo panning for remote users by calling the enableSoundPositionIndication method before joining a channel.
  • For the best voice positioning, Agora recommends using a wired headset.
  • Call this method after joining a channel.

Parameters

uid
The user ID of the remote user.
pan
The voice position of the remote user. The value ranges from -1.0 to 1.0:
  • 0.0: (Default) The remote voice comes from the front.
  • -1.0: The remote voice comes from the left.
  • 1.0: The remote voice comes from the right.
gain
The volume of the remote user. The value ranges from 0.0 to 100.0. The default value is 100.0 (the original volume of the remote user). The smaller the value, the lower the volume.

Returns

  • 0: Success.
  • < 0: Failure.

setScreenCaptureScenario

Sets the screen sharing scenario.

- (int)setScreenCaptureScenario:(AgoraScreenScenarioType)scenarioType
  NS_SWIFT_NAME(setScreenCaptureScenario(_:));

Details

When you start screen sharing or window sharing, you can call this method to set the screen sharing scenario. The SDK adjusts the video quality and experience of the sharing according to the scenario.

Note: Agora recommends that you call this method before joining a channel.

Parameters

scenarioType
The screen sharing scenario. See AgoraScreenScenarioType.

Returns

  • 0: Success.
  • < 0: Failure.

setSubscribeAudioAllowlist

Sets the allowlist of subscriptions for audio streams.

- (int)setSubscribeAudioAllowlist:(NSArray <NSNumber *> *_Nonnull)allowlist;

Details

You can call this method to specify the audio streams of a user that you want to subscribe to.

Note:
  • You can call this method either before or after joining a channel.
  • The allowlist is not affected by the setting in muteRemoteAudioStream, muteAllRemoteAudioStreams and autoSubscribeAudio in AgoraRtcChannelMediaOptions.
  • Once the allowlist of subscriptions is set, it is effective even if you leave the current channel and rejoin the channel.
  • If a user is added in the allowlist and blocklist at the same time, only the blocklist takes effect.

Parameters

allowlist

The user ID list of users that you want to subscribe to.

If you want to specify the audio streams of a user for subscription, add the user ID in this list. If you want to remove a user from the allowlist, you need to call the setSubscribeAudioAllowlist method to update the user ID list; this means you only add the uid of users that you want to subscribe to in the new user ID list.

Returns

  • 0: Success.
  • < 0: Failure.

setSubscribeAudioBlocklist

Set the blocklist of subscriptions for audio streams.

- (int)setSubscribeAudioBlocklist:(NSArray <NSNumber *> *_Nonnull)blocklist;

Details

You can call this method to specify the audio streams of a user that you do not want to subscribe to.

Attention:
  • You can call this method either before or after joining a channel.
  • The blocklist is not affected by the setting in muteRemoteAudioStream,muteAllRemoteAudioStreams, and autoSubscribeAudio in AgoraRtcChannelMediaOptions.
  • Once the blocklist of subscriptions is set, it is effective even if you leave the current channel and rejoin the channel.
  • If a user is added in the allowlist and blocklist at the same time, only the blocklist takes effect.

Parameters

blocklist

The user ID list of users that you do not want to subscribe to.

If you want to specify the audio streams of a user that you do not want to subscribe to, add the user ID in this list. If you want to remove a user from the blocklist, you need to call the setSubscribeAudioBlocklist method to update the user ID list; this means you only add the uid of users that you do not want to subscribe to in the new user ID list.

Returns

  • 0: Success.
  • < 0: Failure.

setSubscribeVideoAllowlist

Set the allowlist of subscriptions for video streams.

- (int)setSubscribeVideoAllowlist:(NSArray <NSNumber *> *_Nonnull)allowlist;

Details

You can call this method to specify the video streams of a user that you want to subscribe to.

Note:
  • You can call this method either before or after joining a channel.
  • The allowlist is not affected by the setting in muteRemoteVideoStream, muteAllRemoteVideoStreams and autoSubscribeAudio in AgoraRtcChannelMediaOptions.
  • Once the allowlist of subscriptions is set, it is effective even if you leave the current channel and rejoin the channel.
  • If a user is added in the allowlist and blocklist at the same time, only the blocklist takes effect.

Parameters

The user ID list of users that you want to subscribe to.

If you want to specify the video streams of a user for subscription, add the user ID of that user in this list. If you want to remove a user from the allowlist, you need to call the setSubscribeVideoAllowlist method to update the user ID list; this means you only add the uid of users that you want to subscribe to in the new user ID list.

Returns

  • 0: Success.
  • < 0: Failure.

setSubscribeVideoBlocklist

Set the blocklist of subscriptions for video streams.

- (int)setSubscribeVideoBlocklist:(NSArray <NSNumber *> *_Nonnull)blocklist;

Details

You can call this method to specify the video streams of a user that you do not want to subscribe to.

Note:
  • You can call this method either before or after joining a channel.
  • The blocklist is not affected by the setting in muteRemoteVideoStream, muteAllRemoteVideoStreams and autoSubscribeAudio in AgoraRtcChannelMediaOptions.
  • Once the blocklist of subscriptions is set, it is effective even if you leave the current channel and rejoin the channel.
  • If a user is added in the allowlist and blocklist at the same time, only the blocklist takes effect.

Parameters

blocklist

The user ID list of users that you do not want to subscribe to.

If you want to specify the video streams of a user that you do not want to subscribe to, add the user ID of that user in this list. If you want to remove a user from the blocklist, you need to call the setSubscribeVideoBlocklist method to update the user ID list; this means you only add the uid of users that you do not want to subscribe to in the new user ID list.

Returns

  • 0: Success.
  • < 0: Failure.

setupLocalVideo

Initializes the local video view.

- (int)setupLocalVideo:(AgoraRtcVideoCanvas * _Nullable)local;

Details

This method initializes the video view of a local stream on the local device. It affects only the video view that the local user sees, not the published local video stream. Call this method to bind the local video stream to a video view and to set the rendering and mirror modes of the video view.

After initialization, call this method to set the local video and then join the channel. The local video still binds to the view after you leave the channel. To unbind the local video from the view, set the view parameter as nil.

Attention:
  • You can call this method either before or after joining a channel.
  • To update the rendering or mirror mode of the local video view during a call, use the setLocalRenderMode [2/2] method.

Parameters

local
The local video view and settings. See AgoraRtcVideoCanvas.

Returns

  • 0: Success.
  • < 0: Failure.

setupRemoteVideo

Initializes the video view of a remote user.

- (int)setupRemoteVideo:(AgoraRtcVideoCanvas * _Nonnull)remote;

Details

This method initializes the video view of a remote stream on the local device. It affects only the video view that the local user sees. Call this method to bind the remote video stream to a video view and to set the rendering and mirror modes of the video view.

You need to specify the ID of the remote user in this method. If the remote user ID is unknown to the application, set it after the app receives the didJoinedOfUid callback.

To unbind the remote user from the view, set the view parameter to NULL.

Once the remote user leaves the channel, the SDK unbinds the remote user.

Attention:
  • To update the rendering or mirror mode of the remote video view during a call, use the setRemoteRenderMode [2/2] method.
  • If you use the Agora recording function, the recording client joins the channel as a placeholder client, triggering the didJoinedOfUid callback. Do not bind the placeholder client to the app view because the placeholder client does not send any video streams. If your app does not recognize the placeholder client, bind the remote user to the view when the SDK triggers the firstRemoteVideoDecodedOfUid callback.

Parameters

remote

The remote video view and settings. See AgoraRtcVideoCanvas.

Returns

  • 0: Success.
  • < 0: Failure.

setVideoDenoiserOptions

Sets video noise reduction.

- (int)setVideoDenoiserOptions:(BOOL)enable options:(AgoraVideoDenoiserOptions* _Nullable)options NS_SWIFT_NAME(setVideoDenoiserOptions(_:options:));

Details

Underlit environments and low-end video capture devices can cause video images to contain significant noise, which affects video quality. In real-time interactive scenarios, video noise also consumes bitstream resources and reduces encoding efficiency during encoding.

You can call this method to enable the video noise reduction feature and set the options of the video noise reduction effect.

Attention:
  • Call this method after calling enableVideo.
  • Video noise reduction has certain requirements for equipment performance. If your device overheats after you enable video noise reduction, Agora recommends modifying the video noise reduction options to a less performance-consuming level or disabling video noise reduction entirely.
  • Both this method and setExtensionPropertyWithVendor can turn on video noise reduction function:
    • When you use the SDK to capture video, Agora recommends this method (this method only works for video captured by the SDK).
    • When you use an external video source to implement custom video capture, or send an external video source to the SDK, Agora recommends using setExtensionPropertyWithVendor.
  • This method relies on the video enhancement dynamic library AgoraClearVisionExtension.xcframework. If the dynamic library is deleted, the function cannot be enabled normally.

Parameters

enable
Whether to enable video noise reduction:
  • YES: Enable video noise reduction.
  • NO: (Default) Disable video noise reduction.
options
The video noise reduction options. See AgoraVideoDenoiserOptions.

Returns

  • 0: Success.
  • < 0: Failure.

setVideoEncoderConfiguration

Sets the video encoder configuration.

- (int)setVideoEncoderConfiguration:(AgoraVideoEncoderConfiguration * _Nonnull)config;

Details

Sets the encoder configuration for the local video.

Attention:
  • You can call this method either before or after joining a channel. If the user does not need to reset the video encoding properties after joining the channel, Agora recommends calling this method before enableVideo to reduce the time to render the first video frame.
  • Both this method and the getMirrorApplied method support setting the mirroring effect. Agora recommends that you only choose one method to set it up. Using both methods at the same time causes the mirroring effect to overlap, which causes the mirroring settings to fail.

Parameters

config
Video profile. See AgoraVideoEncoderConfiguration.

Returns

  • 0: Success.
  • < 0: Failure.

setVideoEncoderConfiguration

Sets the video encoder configuration.

- (int)setVideoEncoderConfiguration:(AgoraVideoEncoderConfiguration * _Nonnull)config;

Details

Sets the encoder configuration for the local video.

Attention:
  • You can call this method either before or after joining a channel. If the user does not need to reset the video encoding properties after joining the channel, Agora recommends calling this method before enableVideo to reduce the time to render the first video frame.
  • Both this method and the getMirrorApplied method support setting the mirroring effect. Agora recommends that you only choose one method to set it up. Using both methods at the same time causes the mirroring effect to overlap, which causes the mirroring settings to fail.

Parameters

config
Video profile. See AgoraVideoEncoderConfiguration.

Returns

  • 0: Success.
  • < 0: Failure.

setVideoProfile [1/2]

Sets the video encoder configuration.

- (int)setVideoProfile:(AgoraVideoProfile)profile
    swapWidthAndHeight:(BOOL)swapWidthAndHeight

Details

Deprecated:
This method is deprecated. Use setVideoEncoderConfiguration instead.

This method sets the video encoder configuration. You can call this method either before or after joining a channel. If the user does not need to reset the video encoding properties after joining the channel, Agora recommends calling this method before enableVideo to reduce the time to render the first video frame.

Parameters

profile

Video profile. See AgoraVideoProfile.

swapWidthAndHeight

The SDK outputs video with a fixed width and height according to the video profile (profile) you selected. This parameter sets whether to swap width and height of the video:

  • YES: Swap the width and height.
  • NO: (Default) Do not swap the width and height.

Returns

  • 0: Success.
  • < 0: Failure.

setVideoProfile [2/2]

Sets the video encoder configuration.

- (int)setVideoResolution:(CGSize)size andFrameRate:(NSInteger)frameRate bitrate:(NSInteger)bitrate;

Details

Deprecated:
This method is deprecated. Use setVideoEncoderConfiguration instead.

This method sets the video encoder configuration. You can call this method either before or after joining a channel. If the user does not need to reset the video encoding properties after joining the channel, Agora recommends calling this method before enableVideo to reduce the time to render the first video frame.

Parameters

width
The width of the video. The maximum value of width × height is 1280 × 720.
height
The height of the video. The maximum value of width × height is 1280 × 720.
frameRate
The frame rate of the video. The highest value is 30. You can set the parameter as 5, 10, 15, 24, and 30.
bitrate
The bitrate of the video. You need to manually work out the bitrate according to the width, height, and frame rate. With the same width and height, the bitrate varies with the frame rate:
  • If the frame rate is 5 fps, divide the recommended bitrate by 2.
  • If the frame rate is 15 fps, use the recommended bitrate.
  • If the frame rate is 30 fps, multiply the recommended bitrate by 1.5.
  • Calculate the bitrate according to the ratio if you choose other frame rates.
  • If you set a bitrate beyond the proper range, the SDK automatically adjusts the bitrate to a value within the proper range.

setVideoQualityParameters

Sets the preferences for high-quality video. (LIVE_BROADCASTING only).

- (int)setVideoQualityParameters:(BOOL)preferFrameRateOverImageQuality;

Details

Deprecated:
This method is deprecated. Agora recommends using the degradationPreference parameter in the AgoraVideoEncoderConfiguration class to set the video quality preference.

Parameters

preferFrameRateOverImageQuality
Whether to prioritize smoothness or image quality.
  • YES: Prioritizes smoothness.
  • NO: (Default) Prioritizes the image quality.

Returns

  • 0: Success.
  • < 0: Failure.

setVideoScenario

Sets video application scenarios.

- (int)setVideoScenario:(AgoraApplicationScenarioType)scenarioType NS_SWIFT_NAME(setVideoScenario(_:));

Details

Since
v4.2.0

After successfully calling this method, the SDK will automatically enable the best practice strategies and adjust key performance metrics based on the specified scenario, to optimize the video experience.

Attention: Ensure that you call this method before joining a channel.

Parameters

scenarioType
The type of video application scenario. See AgoraApplicationScenarioType.
If set to AgoraApplicationMeetingScenario (1), the SDK automatically enables the following strategies:
  • In meeting scenarios where low-quality video streams are required to have a high bitrate, the SDK automatically enables multiple technologies used to deal with network congestions, to enhance the performance of the low-quality streams and to ensure the smooth reception by subscribers.
  • The SDK monitors the number of subscribers to the high-quality video stream in real time and dynamically adjusts its configuration based on the number of subscribers.
    • If nobody subscribers to the high-quality stream, the SDK automatically reduces its bitrate and frame rate to save upstream bandwidth.
    • If someone subscribes to the high-quality stream, the SDK resets the high-quality stream to the AgoraVideoEncoderConfiguration configuration used in the most recent calling of setVideoEncoderConfiguration. If no configuration has been set by the user previously, the following values are used:
      • Resolution: 960 × 540
      • Frame rate: 15 fps
      • Bitrate: 1000 Kbps
  • The SDK monitors the number of subscribers to the low-quality video stream in real time and dynamically enables or disables it based on the number of subscribers.
    Note: If the user has called setDualStreamMode [2/2] to set that never send low-quality video stream (AgoraDisableSimulcastStream), the dynamic adjustment of the low-quality stream in meeting scenarios will not take effect.
    • If nobody subscribes to the low-quality stream, the SDK automatically disables it to save upstream bandwidth.
    • If someone subscribes to the low-quality stream, the SDK enables the low-quality stream and resets it to the AgoraSimulcastStreamConfig configuration used in the most recent calling of setDualStreamMode [2/2]. If no configuration has been set by the user previously, the following values are used:
      • Resolution: 480 × 272
      • Frame rate: 15 fps
      • Bitrate: 500 Kbps

Returns

  • 0: Success.
  • < 0: Failure.

setVoiceBeautifierParameters

Sets parameters for the preset voice beautifier effects.

- (int)setVoiceBeautifierParameters:(AgoraVoiceBeautifierPreset)preset param1:(int)param1 param2:(int)param2;

Details

Call this method to set a gender characteristic and a reverberation effect for the singing beautifier effect. This method sets parameters for the local user who sends an audio stream. After setting the audio parameters, all users in the channel can hear the effect.

For better voice effects, Agora recommends that you call setAudioProfile [1/2] and set scenario to AgoraAudioScenarioGameStreaming(3) and profile to AgoraAudioProfileMusicHighQuality(4) or AgoraAudioProfileMusicHighQualityStereo(5) before calling this method.

Attention:

Parameters

preset
The option for the preset audio effect:
  • SINGING_BEAUTIFIER: The singing beautifier effect.
param1
The gender characteristics options for the singing voice:
  • 1: A male-sounding voice.
  • 2: A female-sounding voice.
param2
The reverberation effect options for the singing voice:
  • 1: The reverberation effect sounds like singing in a small room.
  • 2: The reverberation effect sounds like singing in a large room.
  • 3: The reverberation effect sounds like singing in a hall.

Returns

  • 0: Success.
  • < 0: Failure.

setVoiceBeautifierPreset

Sets a preset voice beautifier effect.

- (int)setVoiceBeautifierPreset:(AgoraVoiceBeautifierPreset)preset;

Details

Call this method to set a preset voice beautifier effect for the local user who sends an audio stream. After setting a voice beautifier effect, all users in the channel can hear the effect. You can set different voice beautifier effects for different scenarios. For the applicable scenarios of each voice beautifier effect, refer to Set the Voice Effect.

For better voice effects, Agora recommends that you call setAudioProfile [1/2] and set scenario to AgoraAudioScenarioGameStreaming(3) and profile to AgoraAudioProfileMusicHighQuality(4) or AgoraAudioProfileMusicHighQualityStereo(5) before calling this method.

Attention:

Parameters

preset

The preset voice beautifier effect options: AgoraVoiceBeautifierPreset.

Returns

  • 0: Success.
  • < 0: Failure.

setVoiceConversionPreset

Sets a preset voice beautifier effect.

- (int)setVoiceConversionPreset:(AgoraVoiceConversionPreset)preset;

Details

Call this method to set a preset voice beautifier effect for the local user who sends an audio stream. After setting an audio effect, all users in the channel can hear the effect. You can set different voice beautifier effects for different scenarios. For the applicable scenarios of each voice beautifier effect, refer to Set the Voice Effect.

To achieve better audio effect quality, Agora recommends that you call setAudioProfile [1/2] and set the profile to AgoraAudioProfileMusicHighQuality(4) or AgoraAudioProfileMusicHighQualityStereo(5) and scenario to AgoraAudioScenarioGameStreaming(3) before calling this method.

Attention:

Parameters

preset

The options for the preset voice beautifier effects: AgoraVoiceConversionPreset.

Returns

  • 0: Success.
  • < 0: Failure.

setVolumeOfEffect

Sets the volume of a specified audio effect.

- (int)setVolumeOfEffect:(int)soundId
              withVolume:(int)volume;

Parameters

soundId
The ID of the audio effect. The ID of each audio effect file is unique.
volume
The playback volume. The value range is [0, 100]. The default value is 100, which represents the original volume.

Returns

  • 0: Success.
  • < 0: Failure.

startAudioMixing [1/2]

Starts playing the music file.

- (int)startAudioMixing:(NSString *  _Nonnull)filePath
               loopback:(BOOL)loopback
                replace:(BOOL)replace
                  cycle:(NSInteger)cycle;

Details

Deprecated:
Use startAudioMixing [2/2] instead.

This method mixes the specified local or online audio file with the audio from the microphone, or replaces the microphone's audio with the specified local or remote audio file. A successful method call triggers the audioMixingStateChanged (AgoraAudioMixingStateTypePlaying) callback. When the audio mixing file playback finishes, the SDK triggers the audioMixingStateChanged (AgoraAudioMixingStateTypeStopped) callback on the local client.

Attention:
  • You can call this method either before or after joining a channel. If you need to call startAudioMixing [1/2] multiple times, ensure that the time interval between calling this method is more than 500 ms.
  • If the local music file does not exist, the SDK does not support the file format, or the the SDK cannot access the music file URL, the SDK reports 701.

Parameters

filePath

The absolute path or URL address (including the suffixes of the filename) of the audio effect file. For example, /var/mobile/Containers/Data/audio.mp4. Supported audio formats include MP3, AAC, M4A, MP4, WAV, and 3GP. See supported audio formats.

loopback
Whether to only play music files on the local client:
  • YES: Only play music files on the local client so that only the local user can hear the music.
  • NO: Publish music files to remote clients so that both the local user and remote users can hear the music.
cycle
The number of times the music file plays.
  • ≥ 0: The number of playback times. For example, 0 means that the SDK does not play the music file while 1 means that the SDK plays once.
  • -1: Play the audio file in an infinite loop.

Returns

  • 0: Success.
  • < 0: Failure.

startAudioMixing [2/2]

Starts playing the music file.

- (int)startAudioMixing:(NSString* _Nonnull)filePath loopback:(BOOL)loopback cycle:(NSInteger)cycle startPos:(NSInteger)startPos;

Details

This method mixes the specified local or online audio file with the audio from the microphone, or replaces the microphone's audio with the specified local or remote audio file. A successful method call triggers the audioMixingStateChanged(AgoraAudioMixingStateTypePlaying) callback. When the audio mixing file playback finishes, the SDK triggers the audioMixingStateChanged(AgoraAudioMixingStateTypeStopped) callback on the local client.

Attention:
  • You can call this method either before or after joining a channel. If you need to call startAudioMixing [2/2] multiple times, ensure that the time interval between calling this method is more than 500 ms.
  • If the local music file does not exist, the SDK does not support the file format, or the the SDK cannot access the music file URL, the SDK reports 701.
  • For the audio file formats supported by this method, see What formats of audio files does the Agora RTC SDK support.

Parameters

filePath
File path:
  • iOS or macOS: The absolute path or URL address (including the suffixes of the filename) of the audio effect file. For example: /var/mobile/Containers/Data/audio.mp4.
loopback
Whether to only play music files on the local client:
  • YES: Only play music files on the local client so that only the local user can hear the music.
  • NO: Publish music files to remote clients so that both the local user and remote users can hear the music.
cycle
The number of times the music file plays.
  • ≥ 0: The number of playback times. For example, 0 means that the SDK does not play the music file while 1 means that the SDK plays once.
  • -1: Play the audio file in an infinite loop.
startPos
The playback position (ms) of the music file.

Returns

  • 0: Success.
  • < 0: Failure.
    • -1: A general error occurs (no specified reason).
    • -2: The parameter is invalid.
    • -3: The SDK is not ready.
      • The audio module is disabled.
      • The program is not complete.
      • The initialization of AgoraRtcEngineKit fails. Reinitialize the AgoraRtcEngineKit.

startAudioRecording [1/2]

Starts audio recording on the client.

- (int)startAudioRecording:(NSString * _Nonnull)filePath
                   quality:(AgoraAudioRecordingQuality)quality;

Details

Attention: The sample rate of recording is 32 kHz by default and cannot be modified.
The Agora SDK allows recording during a call. This method records the audio of all the users in the channel and generates an audio recording file. Supported formats of the recording file are as follows:
  • .wav: Large file size with high fidelity.
  • .aac: Small file size with low fidelity.

Ensure that the directory for the recording file exists and is writable. This method should be called after the joinChannelByToken [1/4] method. The recording automatically stops when you call the leaveChannel [1/2] method.

Parameters

filePath
The absolute path (including the filename extensions) of the recording file. For example: /var/mobile/Containers/Data/audio.mp4.
Attention:

Ensure that the directory for the log files exists and is writable.

quality
Audio recording quality. See AgoraAudioRecordingQuality.

Returns

  • 0: Success.
  • < 0: Failure.

startAudioRecording [2/2]

Starts audio recording on the client and sets recording configurations.

- (int)startAudioRecordingWithConfig:(AgoraAudioRecordingConfiguration * _Nonnull)config;

Details

The Agora SDK allows recording during a call. After successfully calling this method, you can record the audio of users in the channel and get an audio recording file. Supported formats of the recording file are as follows:
  • WAV: High-fidelity files with typically larger file sizes. For example, if the sample rate is 32,000 Hz, the file size for 10-minute recording is approximately 73 MB.
  • AAC: Low-fidelity files with typically smaller file sizes. For example, if the sample rate is 32,000 Hz and the recording quality is AgoraAudioRecordingQualityMedium, the file size for 10-minute recording is approximately 2 MB.

Once the user leaves the channel, the recording automatically stops.

Attention: Call this method after joining a channel.

Parameters

config
Recording configurations. See AgoraAudioRecordingConfiguration.

Returns

  • 0: Success.
  • < 0: Failure.

startCameraCapture

Starts camera capture.

- (int)startCameraCapture:(AgoraVideoSourceType)sourceType config:(AgoraCameraCapturerConfiguration * _Nullable)config NS_SWIFT_NAME(startCameraCapture(_:config:));

Details

Since
v4.2.0

You can call this method to start capturing video from one or more cameras by specifying sourceType.

Note: On the iOS platform, if you want to disable multi-camera capture, you need to call enableMultiCamera and set enabled to YES before calling this method.

Parameters

sourceType

The type of the video source. See AgoraVideoSourceType.

Note:
  • On the mobile platforms, you can capture video from up to 2 cameras, provided the device has dual cameras or supports an external camera.
config

The configuration of the video capture. See AgoraCameraCapturerConfiguration.

Note: On the iOS platform, this parameter has no practical function. Use the config parameter in enableMultiCamera instead to set the video capture configuration.

Returns

  • 0: Success.
  • < 0: Failure.

startChannelMediaRelay

Starts relaying media streams across channels. This method can be used to implement scenarios such as co-host across channels.

- (int)startChannelMediaRelay:(AgoraChannelMediaRelayConfiguration * _Nonnull)config;

Details

Deprecated:
This method is deprecated. Use startOrUpdateChannelMediaRelay instead.
After a successful method call, the SDK triggers the channelMediaRelayStateDidChange and didReceiveChannelMediaRelayEvent callbacks, and these callbacks return the state and events of the media stream relay.
  • If the channelMediaRelayStateDidChange callback returns AgoraChannelMediaRelayStateRunning (2) and AgoraChannelMediaRelayErrorNone (0), and the didReceiveChannelMediaRelayEvent callback returns AgoraChannelMediaRelayEventSentToDestinationChannel (4), it means that the SDK starts relaying media streams between the source channel and the target channel.
  • If the channelMediaRelayStateDidChange callback returns AgoraChannelMediaRelayStateFailure (3), an exception occurs during the media stream relay.
Attention:
  • Call this method after joining the channel.
  • This method takes effect only when you are a host in a live streaming channel.
  • After a successful method call, if you want to call this method again, ensure that you call the stopChannelMediaRelay method to quit the current relay.
  • The relaying media streams across channels function needs to be enabled by contacting .
  • Agora does not support string user accounts in this API.

Parameters

config
The configuration of the media stream relay. See AgoraChannelMediaRelayConfiguration.

Returns

  • 0: Success.
  • < 0: Failure.
    • -1: A general error occurs (no specified reason).
    • -2: The parameter is invalid.
    • -7: The method call was rejected. It may be because the SDK has not been initialized successfully, or the user role is not an host.
    • -8: Internal state error. Probably because the user is not an audience member.

startDirectCdnStreaming

Starts pushing media streams to the CDN directly.

- (int)startDirectCdnStreaming:(id<AgoraDirectCdnStreamingEventDelegate> _Nonnull)delegate publishUrl:(NSString * _Nonnull)publishUrl mediaOptions:(AgoraDirectCdnStreamingMediaOptions * _Nonnull)options;

Details

Aogra does not support pushing media streams to one URL repeatedly.

Media options

Agora does not support setting the value of publishCameraTrack and publishCustomVideoTrack as YES, or the value of publishMicrophoneTrack and publishCustomAudioTrack as YES at the same time. When choosing media setting options (AgoraDirectCdnStreamingMediaOptions), you can refer to the following examples:

If you want to push audio and video streams published by the host to the CDN, the media setting options should be set as follows:

As of v4.2.0, Agora SDK supports audio-only live streaming. You can set publishCustomAudioTrack or publishMicrophoneTrack in AgoraDirectCdnStreamingMediaOptions as YES and call pushExternalAudioFrameSampleBuffer or pushExternalAudioFrameNSData to push audio streams.
Note: Agora only supports pushing one audio and video streams or one audio streams to CDN.

Parameters

delegate
See onDirectCdnStreamingStateChanged and onDirectCdnStreamingStats.
publishUrl
The CDN live streaming URL.
options
The media setting options for the host. See AgoraDirectCdnStreamingMediaOptions.

Returns

  • 0: Success.
  • < 0: Failure.

startEchoTest

Starts an audio call test.

- (int)startEchoTest:(void(^ _Nullable)
                    (NSString * _Nonnull channel, NSUInteger uid, NSInteger elapsed))successBlock;

Details

Deprecated:
This method is deprecated, use startEchoTestWithInterval instead.

This method starts an audio call test to determine whether the audio devices (for example, headset and speaker) and the network connection are working properly. To conduct the test, the user speaks, and the recording is played back within 10 seconds. If the user can hear the recording within the interval, the audio devices and network connection are working properly.

Attention:
  • Call this method before joining a channel.
  • After calling startEchoTest, you must call stopEchoTest to end the test. Otherwise, the app cannot perform the next echo test, and you cannot join the channel.
  • In the live streaming channels, only a host can call this method.

Parameters

successBlock
The SDK triggers the successBlock callback if this method call is successful.

Returns

  • 0: Success.
  • < 0: Failure.

startEchoTestWithInterval

Starts an audio call test.

- (int)startEchoTestWithInterval:(NSInteger)interval
                  successBlock:(void(^ _Nullable)
                  (NSString * _Nonnull channel, NSUInteger uid, NSInteger elapsed))successBlock;

Details

Deprecated:
This method is deprecated as of v4.0.1. Use startEchoTestWithConfig instead.

This method starts an audio call test to determine whether the audio devices (for example, headset and speaker) and the network connection are working properly. To conduct the test, let the user speak for a while, and the recording is played back within the set interval. If the user can hear the recording within the interval, the audio devices and network connection are working properly.

Attention:
  • Call this method before joining a channel.
  • After calling startEchoTestWithInterval, you must call stopEchoTest to end the test. Otherwise, the app cannot perform the next echo test, and you cannot join the channel.
  • In the live streaming channels, only a host can call this method.

Parameters

interval
The time interval (s) between when you speak and when the recording plays back. The value range is [2, 10].
successBlock
The SDK triggers the successBlock callback if this method call is successful.

Returns

  • 0: Success.
  • < 0: Failure.

startEchoTestWithConfig

Starts an audio device loopback test.

- (int)startEchoTestWithConfig:(AgoraEchoTestConfiguration* _Nonnull)config;

Details

To test whether the user's local sending and receiving streams are normal, you can call this method to perform an audio and video call loop test, which tests whether the audio and video devices and the user's upstream and downstream networks are working properly.

After starting the test, the user needs to make a sound or face the camera. The audio or video is output after about two seconds. If the audio playback is normal, the audio device and the user's upstream and downstream networks are working properly; if the video playback is normal, the video device and the user's upstream and downstream networks are working properly.
Attention:
  • You can call this method either before or after joining a channel.
  • After calling this method, call stopEchoTest to end the test; otherwise, the user cannot perform the next audio and video call loop test and cannot join the channel.
  • In live streaming scenarios, this method only applies to hosts.

Parameters

config
The configuration of the audio and video call loop test. See AgoraEchoTestConfiguration.

Returns

  • 0: Success.
  • < 0: Failure.

startLastmileProbeTest

Starts the last mile network probe test.

- (int)startLastmileProbeTest:(AgoraLastmileProbeConfig *_Nullable)config;

Details

This method starts the last-mile network probe test before joining a channel to get the uplink and downlink last mile network statistics, including the bandwidth, packet loss, jitter, and round-trip time (RTT).

Once this method is enabled, the SDK returns the following callbacks:
  • lastmileQuality: The SDK triggers this callback within two seconds depending on the network conditions. This callback rates the network conditions and is more closely linked to the user experience.
  • lastmileProbeTestResult: The SDK triggers this callback within 30 seconds depending on the network conditions. This callback returns the real-time statistics of the network conditions and is more objective.
This method applies to the following scenarios:
  • Before a user joins a channel, call this method to check the uplink network quality.
  • In a live streaming channel, call this method to check the uplink network quality before an audience member switches to a host.
Attention:
  • Do not call other methods before receiving the lastmileQuality and lastmileProbeTestResult callbacks. Otherwise, the callbacks may be interrupted.
  • A host should not call this method after joining a channel (when in a call).

Parameters

config
The configurations of the last-mile network probe test. See AgoraLastmileProbeConfig.

Returns

  • 0: Success.
  • < 0: Failure.

startLocalVideoTranscoder

Starts the local video mixing.

- (int)startLocalVideoTranscoder:(AgoraLocalTranscoderConfiguration* _Nonnull)config NS_SWIFT_NAME(startLocalVideoTranscoder(_:));

Details

After calling this method, you can merge multiple video streams into one video stream locally. For example, you can merge the video streams captured by the camera, screen sharing, media player, remote video, video files, images, etc. into one video stream, and then publish the mixed video stream to the channel.

Note:
  • Local video mixing requires more CPU resources. Therefore, Agora recommends enabling this function on devices with higher performance.
  • If you need to mix locally captured video streams, the SDK supports the following capture combinations:
    • On the iOS platform, it supports up to 2 video streams captured by cameras (the device itself needs to support dual cameras or support external cameras) + 1 screen sharing stream.
  • If you need to mix the locally collected video streams, you need to call this method after startCameraCapture or startScreenCapture.
  • If you want to publish the mixed video stream to the channel, you need to set publishTranscodedVideoTrack in AgoraRtcChannelMediaOptions to YES when calling joinChannelByToken [2/4] or updateChannelWithMediaOptions.

Applicable scenarios

You can enable the local video mixing function in scenarios such as remote conferences, live streaming, and online education, which allows users to view and manage multiple videos more conveniently, and supports portrait-in-picture effect and other functions.

The following is a typical use case for implementing the portrait-in-picture effect:
  1. Call enableVirtualBackground, and set the custom background image to AgoraVirtualBackgroundNone, that is, separate the portrait and the background in the video captured by the camera.
  2. Call startScreenCapture to start capturing the screen sharing video stream.
  3. Call this method and set the video source for capturing portraits as one of the video sources participating in the local video mixing, and the portrait picture-invideo mixing can be added in the mixed image video.
    Note: When configuring the local video mixing, it is necessary to ensure that the layer number of the video stream capturing the portrait is greater than the layer number of the screen sharing stream. Otherwise, the portrait will be covered by the screen sharing and will not be displayed in the final mixed video stream.

Parameters

config
Configuration of the local video mixing, see AgoraLocalTranscoderConfiguration.
Attention:
  • The maximum resolution of each video stream participating in the local video mixing is 4096 × 2160. If this limit is exceeded, video mixing does not take effect.
  • The maximum resolution of the mixed video stream is 4096 × 2160.

Returns

  • 0: Success.
  • < 0: Failure.

startMediaRenderingTracing

Enables tracing the video frame rendering process.

- (int)startMediaRenderingTracing NS_SWIFT_NAME(startMediaRenderingTracing());

Details

Since
v4.1.1

The SDK starts tracing the rendering status of the video frames in the channel from the moment this method is successfully called and reports information about the event through the videoRenderingTracingResultOfUid callback.

Note:
  • By default, the SDK starts tracing the video rendering event automatically when the local user successfully joins the channel. You can call this method at an appropriate time according to the actual application scenario to customize the tracing process.
  • After the local user leaves the current channel, the SDK automatically resets the time point to the next time when the user successfully joins the channel.

Applicable scenarios

Agora recommends that you use this method in conjunction with the UI settings (such as buttons and sliders) in your app to improve the user experience. For example, call this method when the user clicks the Join Channel button, and then get the indicators in the video frame rendering process through the videoRenderingTracingResultOfUid callback, so as to optimize the indicators accordingly.

Returns

  • 0: Success.
  • < 0: Failure.

startOrUpdateChannelMediaRelay

Starts relaying media streams across channels or updates channels for media relay.

- (int)startOrUpdateChannelMediaRelay:(AgoraChannelMediaRelayConfiguration * _Nonnull)config NS_SWIFT_NAME(startOrUpdateChannelMediaRelay(_:));

Details

Since
v4.2.0

The first successful call to this method starts relaying media streams from the source channel to the destination channels. To relay the media stream to other channels, or exit one of the current media relays, you can call this method again to update the destination channels.

After a successful method call, the SDK triggers the channelMediaRelayStateDidChange callback, and this callback returns the state of the media stream relay. Common states are as follows:
  • If the channelMediaRelayStateDidChange callback returns AgoraChannelMediaRelayStateRunning (2) and AgoraChannelMediaRelayErrorNone (0), it means that the SDK starts relaying media streams from the source channel to the destination channel.
  • If the channelMediaRelayStateDidChange callback returns AgoraChannelMediaRelayStateFailure (3), an exception occurs during the media stream relay.
Attention:
  • Call this method after joining the channel.
  • This method takes effect only when you are a host in a live streaming channel.
  • The relaying media streams across channels function needs to be enabled by contacting .
  • Agora does not support string user accounts in this API.

Parameters

config
The configuration of the media stream relay. See AgoraChannelMediaRelayConfiguration.

Returns

  • 0: Success.
  • < 0: Failure.
    • -1: A general error occurs (no specified reason).
    • -2: The parameter is invalid.
    • -7: The method call was rejected. It may be because the SDK has not been initialized successfully, or the user role is not an host.
    • -8: Internal state error. Probably because the user is not an audience member.

updateLocalTranscoderConfiguration

Updates the local video mixing configuration.

- (int)updateLocalTranscoderConfiguration:(AgoraLocalTranscoderConfiguration* _Nonnull)config NS_SWIFT_NAME(updateLocalTranscoderConfiguration(_:));

Details

After calling startLocalVideoTranscoder, call this method if you want to update the local video mixing configuration.

Note: If you want to update the video source type used for local video mixing, such as adding a second camera or screen to capture video, you need to call this method after startCameraCapture or startScreenCapture.

Parameters

config
Configuration of the local video mixing, see AgoraLocalTranscoderConfiguration.

Returns

  • 0: Success.
  • < 0: Failure.

startPreview

Enables the local video preview.

- (int)startPreview;

Details

You can call this method to enable local video preview. Before calling this method, ensure that you do the following:
Attention:
  • The local preview enables the mirror mode by default.
  • After the local video preview is enabled, if you call leaveChannel [1/2] to exit the channel, the local preview remains until you call stopPreview to disable it.

Returns

  • 0: Success.
  • < 0: Failure.

startRhythmPlayer

Enables the virtual metronome.

- (int)startRhythmPlayer:(NSString * _Nonnull)sound1 sound2:(NSString * _Nonnull)sound2 config:(AgoraRhythmPlayerConfig *  _Nullable)config;

Details

In music education, physical education and other scenarios, teachers usually need to use a metronome so that students can practice with the correct beat. The meter is composed of a downbeat and upbeats. The first beat of each measure is called a downbeat, and the rest are called upbeats.

In this method, you need to set the file path of the upbeat and downbeat, the number of beats per measure, the beat speed, and whether to send the sound of the metronome to remote users.

After successfully calling this method, the SDK triggers the didRhythmPlayerStateChanged callback locally to report the status of the virtual metronome.

Attention:
  • After enabling the virtual metronome, the SDK plays the specified audio effect file from the beginning, and controls the playback duration of each file according to beatsPerMinute you set in AgoraRhythmPlayerConfig. For example, if you set beatsPerMinute as 60, the SDK plays one beat every second. If the file duration exceeds the beat duration, the SDK only plays the audio within the beat duration.
  • By default, the sound of the virtual metronome is published in the channel. If you do not want the sound to be heard by the remote users, you can set publishRhythmPlayerTrack in AgoraRtcChannelMediaOptions as NO.

Parameters

sound1
The absolute path or URL address (including the filename extensions) of the file for the downbeat. For example, /var/mobile/Containers/Data/audio.mp4. For the audio file formats supported by this method, see What formats of audio files does the Agora RTC SDK support.
sound2
The absolute path or URL address (including the filename extensions) of the file for the upbeats. For example, /var/mobile/Containers/Data/audio.mp4. For the audio file formats supported by this method, see What formats of audio files does the Agora RTC SDK support.
config
The metronome configuration. See AgoraRhythmPlayerConfig.

Returns

  • 0: Success.
  • < 0: Failure.
    • -22: Cannot find audio effect files. Please set the correct paths for sound1 and sound2.

startRtmpStreamWithoutTranscoding

Starts pushing media streams to a CDN without transcoding.

- (int)startRtmpStreamWithoutTranscoding:(NSString* _Nonnull)url;

Details

Agora recommends that you use the server-side Media Push function. For details, see Use RESTful API.

You can call this method to push an audio or video stream to the specified CDN address. This method can push media streams to only one CDN address at a time, so if you need to push streams to multiple addresses, call this method multiple times.

After you call this method, the SDK triggers the rtmpStreamingChangedToState callback on the local client to report the state of the streaming.

Attention:
  • Ensure that you enable the Media Push service before using this function. See Enable Media Push.
  • Call this method after joining a channel.
  • Only hosts in the LIVE_BROADCASTING profile can call this method.
  • If you want to retry pushing streams after a failed push, make sure to call stopRtmpStream first, then call this method to retry pushing streams; otherwise, the SDK returns the same error code as the last failed push.

Parameters

url
The address of Media Push. The format is RTMP or RTMPS. The character length cannot exceed 1024 bytes. Special characters such as Chinese characters are not supported.

Returns

  • 0: Success.
  • < 0: Failure.
    • -2: The URL is null or the string length is 0.
    • -7: The SDK is not initialized before calling this method.
    • -19: The Media Push URL is already in use, use another URL instead.

startRtmpStreamWithTranscoding

Starts Media Push and sets the transcoding configuration.

- (int)startRtmpStreamWithTranscoding:(NSString* _Nonnull)url transcoding:(AgoraLiveTranscoding* _Nullable)transcoding;

Details

Agora recommends that you use the server-side Media Push function. For details, see Use RESTful API.

You can call this method to push a live audio-and-video stream to the specified CDN address and set the transcoding configuration. This method can push media streams to only one CDN address at a time, so if you need to push streams to multiple addresses, call this method multiple times.

After you call this method, the SDK triggers the rtmpStreamingChangedToState callback on the local client to report the state of the streaming.

Attention:
  • Ensure that you enable the Media Push service before using this function. See Enable Media Push.
  • Call this method after joining a channel.
  • Only hosts in the LIVE_BROADCASTING profile can call this method.
  • If you want to retry pushing streams after a failed push, make sure to call stopRtmpStream first, then call this method to retry pushing streams; otherwise, the SDK returns the same error code as the last failed push.

Parameters

url
The address of Media Push. The format is RTMP or RTMPS. The character length cannot exceed 1024 bytes. Special characters such as Chinese characters are not supported.
transcoding

The transcoding configuration for Media Push. See AgoraLiveTranscoding.

Returns

  • 0: Success.
  • < 0: Failure.
    • -2: The URL is null or the string length is 0.
    • -7: The SDK is not initialized before calling this method.
    • -19: The Media Push URL is already in use, use another URL instead.

startScreenCapture

Starts screen capture.

- (int)startScreenCapture:(AgoraScreenCaptureParameters2* _Nullable)parameters NS_SWIFT_NAME(startScreenCapture(_:));

Details

There are two ways to start screen sharing, you can choose one according to your needs:
  • Call this method before joining a channel, then call joinChannelByToken [2/4] to join channel and set publishScreenCaptureVideo to YES to start screen sharing.
  • Call this method after joining a channel, then call updateChannelWithMediaOptions and set publishScreenCaptureVideo to YES to start screen sharing.

When the state of the screen sharing extension process changes, the SDK triggers the localVideoStateChangedOfState callback accordingly. When the type of sourceType is AgoraVideoSourceTypeScreen, the state parameter indicates the state of the screen sharing.

Attention:
  • On the iOS platform, screen sharing is only available on iOS 12.0 and later.
  • The billing for the screen sharing stream is based on the dimensions in AgoraScreenVideoParameters. When you do not pass in a value, Agora bills you at 1280 × 720; when you pass a value in, Agora bills you at that value. See Pricing.
  • If you are using the custom audio source instead of the SDK to capture audio, Agora recommends you add the keep-alive processing logic to your application to avoid screen sharing stopping when the application goes to the background.
  • This feature requires high-performance device, and Agora recommends that you use it on iPhone X and later models.
  • This method relies on the iOS screen sharing dynamic library AgoraReplayKitExtension.xcframework. If the dynamic library is deleted, screen sharing cannot be enabled normally.

Parameters

parameters
The screen sharing encoding parameters. The default video dimension is 1920 x 1080, that is, 2,073,600 pixels. Agora uses the value of this parameter to calculate the charges. See AgoraScreenCaptureParameters2.

Returns

  • 0: Success.
  • < 0: Failure.
    • -2: The parameter is null.

stopAllEffects

Stops playing all audio effects.

- (int)stopAllEffects;

Returns

  • 0: Success.
  • < 0: Failure.

stopAudioMixing

Stops playing and mixing the music file.

- (int)stopAudioMixing;

Details

This method stops the audio mixing. Call this method when you are in a channel.

Returns

  • 0: Success.
  • < 0: Failure.

stopAudioRecording

Stops the audio recording on the client.

- (int)stopAudioRecording;

Returns

  • 0: Success.
  • < 0: Failure.

stopCameraCapture

Stops camera capture.

- (int)stopCameraCapture:(AgoraVideoSourceType)sourceType NS_SWIFT_NAME(stopCameraCapture(_:));

Details

Since
v4.2.0

After calling startCameraCapture to start capturing video through one or more cameras, you can call this method and set the sourceType parameter to stop the capture from the specified cameras.

Note: On the iOS platform, if you want to disable multi-camera capture, you need to call enableMultiCamera after calling this method and set enabled to NO.
Attention: If you are using the local video mixing function, calling this method can cause the local video mixing to be interrupted.

Parameters

sourceType
The type of the video source. See AgoraVideoSourceType.

Returns

  • 0: Success.
  • < 0: Failure.

stopChannelMediaRelay

Stops the media stream relay. Once the relay stops, the host quits all the target channels.

- (int)stopChannelMediaRelay;

Details

After a successful method call, the SDK triggers the channelMediaRelayStateDidChange callback. If the callback reports AgoraChannelMediaRelayStateIdle (0) and AgoraChannelMediaRelayErrorNone (0), the host successfully stops the relay.

Attention: If the method call fails, the SDK triggers the channelMediaRelayStateDidChange callback with the