Interface IAgoraRTCClient

An interface providing the local client with basic functions for a voice or video call, such as joining a channel, publishing tracks, or subscribing to tracks.

An AgoraRTCClient object is created by the createClient method.

Hierarchy

  • EventEmitter
    • IAgoraRTCClient

Properties

channelName?: string

The current channel name.

The value is undefined if the local user has not joined a channel.

connectionState: ConnectionState

Connection state between the SDK and the Agora server.

localTracks: ILocalTrack[]

Since
   4.0.0

The list of the local tracks that the local user is publishing.

  • After a success method call of publish, the published track object is added to this list automatically.
  • After a success method call of unpublish, the unpublished track object is removed from this list automatically.
remoteUsers: IAgoraRTCRemoteUser[]

A list of the remote users in the channel, each of which includes the user ID and the corresponding track information.

The list is empty if the local user has not joined a channel.

uid?: UID

The ID of the local user.

The value is undefined if the local user has not joined a channel.

Agora Core Methods

  • Allows a user to join a channel.

    Users in the same channel can talk to each other.

    When joining a channel, the [AgoraRTCClient.on("connection-state-change")]event_connection_state_change callback is triggered on the local client.

    After joining a channel, if the user is in the communication profile, or is a host in the Live Broadcast profile, the [AgoraRTCClient.on("user-joined")]event_user_joined callback is triggered on the remote client.

    Returns

    A Promise object with the user ID.

    • If you pass a number as the user ID, the SDK returns a number uid.
    • If you pass a string as the user ID, the SDK returns a string uid.
    • If you leave the uid parameter empty or set it as null, the Agora server assigns a number uid and returns it.

    Parameters

    • appid: string

      The App ID of your Agora project.

    • channel: string

      A string that provides a unique channel name for the call. The length must be within 64 bytes. Supported character scopes:

      • All lowercase English letters: a to z.
      • All uppercase English letters: A to Z.
      • All numeric characters: 0 to 9.
      • The space character.
      • Punctuation characters and other symbols, including: "!", "#", "$", "%", "&", "(", ")", "+", "-", ":", ";", "<", "=", ".", ">", "?", "@", "[", "]", "^", "_", " {", "}", "|", "~", ",".
    • token: null | string

      The token generated at your server:

      • For low-security requirements: You can use the temporary token generated at Console. For details, see Get a temporary token.
      • For high-security requirements: Set it as the token generated at your server. For details, see Get a token.
    • Optional uid: null | UID

      The user ID, an integer or a string, ASCII characters only. Ensure this ID is unique. If you set the uid to null, the Agora server assigns a number uid and returns it in the Promise object.

      To ensure better end-user experience, Agora highly suggests not using a string as the user ID.

      Note:

      • All users in the same channel should have the same type (number or string) of uid.
      • If you use a number as the user ID, it should be a 32-bit unsigned integer with a value ranging from 0 to (232-1).
      • If you use a string as the user ID, the maximum length is 255 characters.
      • You can use string UIDs to interoperate with the Native SDK 2.8 or later. Ensure that the Native SDK uses the User Account to join the channel. See Use String User Accounts.

    Returns Promise<UID>

  • Leaves a channel.

    When leaving the channel, the [AgoraRTCClient.on("connection-state-change")]IAgoraRTCClient.event_connection_state_change callback is triggered on the local client.

    When a user (in the communication profile) or a host (in the live-broadcast profile) leaves the channel, the [AgoraRTCClient.on("user-left")]IAgoraRTCClient.event_user_left callback is triggered on each remote client in the channel.

    Returns Promise<void>

  • Publishes local audio and/or video tracks to a channel.

    After publishing the local tracks, the [AgoraRTCClient.on("user-published")]event_user_published callback is triggered on the remote client.

    Note:

    • In a live broadcast channel, call setClientRole to set the user role as host before calling this method.
    • You can call this method multiple times to add tracks for publishing.
    • An AgoraRTCClient object can publish multiple audio tracks. The SDK automatically mixes the audio tracks into one audio track. Exception: Safari does not support publishing multiple audio tracks on versions earlier than Safari 12.
    • An AgoraRTCClient object can publish only one video track. If you want to switch the published video track, for example, from a camera video track to a scree-sharing video track, you must unpublish the published video track.

    Parameters

    • tracks: ILocalTrack | ILocalTrack[]

      Local tracks created by [AgoraRTC.createMicrophoneAudioTrack]IAgoraRTC.createMicrophoneAudioTrack / [AgoraRTC.createCameraVideoTrack]IAgoraRTC.createCameraVideoTrack or other methods.

    Returns Promise<void>

  • Parameters

    Returns Promise<IRemoteVideoTrack>

  • Parameters

    Returns Promise<IRemoteAudioTrack>

  • Subscribes to the audio and/or video tracks of a remote user.

    await client.subscribe(user"audio");
    user.audioTrack.play();

    Returns

    When the subscription succeeds, the SDK adds the subscribed tracks to [user.audioTrack]audioTrack and [user.videoTrack]videoTrack. You can go on to call [audioTrack.play]play or [videoTrack.play]play to play the tracks.

    The Promise object throws the TRACK_IS_NOT_PUBLISHED error if the specified tracks do not exist.

    Parameters

    • user: IAgoraRTCRemoteUser

      The remote user.

    • mediaType: "audio" | "video"

      The media type of the tracks to subscribe to.

      • "video": Subscribe to the video track only.
      • “audio”: Subscribe to the audio track only.

    Returns Promise<IRemoteTrack>

  • Unpublishes the local audio and/or video tracks.

    After the local client unpublishes, the [AgoraRTCClient.on("user-unpublished")]event_user_unpublished callback is triggered on each remote client in the channel.

    Parameters

    • Optional tracks: ILocalTrack | ILocalTrack[]

      The tracks to unpublish. If left empty, all the published tracks are unpublished.

    Returns Promise<void>

  • Unsubscribes from the audio and/or tracks of a remote user.

    Returns

    The Promise object throws the TRACK_IS_NOT_SUBSCRIBED error if the specified tracks do not exist.

    Parameters

    • user: IAgoraRTCRemoteUser

      The remote user.

    • Optional mediaType: "audio" | "video"

      The media type of the tracks to unsubscribe from:

      • "video": Unsubscribe from the video track only.
      • “audio”: Unsubscribe from the audio track only.
      • empty: Unsubscribe from all the tracks published by the remote user.

    Returns Promise<void>

Channel Media Relay Methods

  • Starts relaying media streams across channels.

    After this method call, the SDK triggers the following callbacks:

    • [AgoraRTCClient.on("channel-media-relay-state")]event_channel_media_relay_state, which reports the state and error code of the media stream relay.
      • If the media stream relay fails, this callback returns state 3. Refer to code for the error code and call this method again.
    • [AgoraRTCClient.on("channel-media-relay-event")]event_channel_media_relay_event, which reports the events of the media stream relay.
      • If the media stream relay starts successfully, this callback returns code 4, reporting that the SDK starts relaying the media stream to the destination channel.

    Note:

    • Contact sales-us@agora.io to enable this function.
    • We do not support string user IDs in this API.
    • Call this method only after joining a channel.
    • In a live-broadcast channel, only a host can call this method.
    • To call this method again after it succeeds, you must call stopChannelMediaRelay to quit the current relay.
    client.startChannelMediaRelay(config).then(() => {
    console.log("startChannelMediaRelay success");
    }).catch(e => {
    console.log("startChannelMediaRelay failed", e);
    })

    Returns

    A Promise object, which is resolved if the media relay starts successfully.

    Parameters

    Returns Promise<void>

  • Stops the media stream relay.

    Once the relay stops, the user leaves all the destination channels.

    Returns

    A Promise object, which is resolved if the relay stops successfully.

    Returns Promise<void>

  • Updates the destination channels for media stream relay.

    After the channel media relay starts, if you want to relay the media stream to more channels, or leave the current relay channel, you can call this method.

    Note:

    • Call this method after startChannelMediaRelay.
    • You can add a maximum of four destination channels to a relay.

    Returns

    A Promise object, which is resolved if the update succeeds. If the update fails, the media relay state is reset, and you need to call startChannelMediaRelay again to restart the relay.

    Parameters

    Returns Promise<void>

Dual Stream Methods

  • Disables dual-stream mode.

    Returns Promise<void>

  • Enables dual-stream mode.

    Enables dual-stream mode for the local stream. Dual streams are a hybrid 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. The default video profile of the low-quality stream is: A resolution (width × height) of 160 × 120 px, a bitrate of 50 Kbps, and a frame rate of 15 fps. Call setLowStreamParameter to customize the video profile of the low-quality stream.

    Note:

    • Dual-stream mode is not supported mobile devices.
    client.enableDualStream().then(() => {
    console.log("Enable Dual stream success!");
    }).catch(err => {
    console.log(err);
    })

    Returns Promise<void>

  • Sets the video profile of the low-quality video stream.

    If you have enabled the dual-stream mode by calling enableDualStream, use this method to set the low-quality video stream profile.

    If you do not set the low-quality video stream profile, the SDK assigns the default values based on your stream video profile.

    Note:

    • Frame rate settings do not take effect on Firefox. The browser sets the frame rate as 30 fps.
    • Due to limitations of some devices and browsers, the resolution you set may get adjusted by the browser. In this case, billings are calculated based on the actual resolution.
    • Call this method before calling publish.

    Parameters

    Returns void

  • Sets the video type of a remote stream.

    If a remote user enables dual-stream mode, use this method to set which stream to subscribe to. The local client subscribes to the high-quality video stream by default.

    This method works only if the remote client has enabled dual-stream mode (enableDualStream).

    Parameters

    • uid: UID

      The ID of the remote user.

    • streamType: RemoteStreamType

      The remote video stream type. The following lists the video-stream types:

      • 0: High-bitrate, high-resolution video stream.
      • 1: Low-bitrate, low-resolution video stream.

    Returns Promise<void>

  • Sets the stream fallback option.

    Use this method to set the fallback option for the subscribed video stream. Under poor network conditions, the SDK can subscribe to the low-quality video stream or only to the audio stream.

    If the auto-fallback option is enabled, the SDK triggers the [AgoraRTCClient.on("stream-type-changed")]event_stream_type_changed callback when the remote stream changes from a high-quality video stream to a low-quality video stream or vice versa, and triggers the [AgoraRTCClient.on("stream-fallback")]event_stream_fallback callback when the remote stream changes from a video stream to an audio stream or vice versa.

    This method works only if the remote user has enabled the dual-stream mode by enableDualStream.

    Parameters

    Returns Promise<void>

Inject Stream Methods

  • Note: Agora will soon stop the service for injecting online media streams on the client. If you have not implemented this service, Agora recommends that you do not use it.

    Injects an online media stream to a live-broadcast channel.

    After you call this method, the server pulls the online stream and injects it into a live-broadcast channel. This is applicable to scenarios where all audience members in the channel can watch a live show and interact with each other. See Inject Online Media Stream for details.

    If the online media stream is injected successfully, this stream is added to the channel, and all users in the channel receive the [AgoraRTCClient.on("user-published")]event_user_published and [AgoraRTCClient.on("user-joined")]event_user_joined callbacks with the uid 666.

    The SDK reports the status of the media stream by triggering the [AgoraRTCClient.on("stream-inject-status")]event_stream_inject_status event.

    Parameters

    • url: string

      The URL address to be injected to the ongoing live broadcast. ASCII characters only, and the string length must be less than 1024 bytes. Valid protocols are RTMP, HLS, and HTTP-FLV.

      • Supported audio codec type: AAC.
      • Supported video codec type: H264(AVC).
    • config: InjectStreamConfig

      Configurations for the injected stream.

    Returns Promise<void>

  • Note: Agora will soon stop the service for injecting online media streams on the client. If you have not implemented this service, Agora recommends that you do not use it.

    Removes an injected stream.

    This method removes an injected stream (added by addInjectStreamUrl) from the live broadcast.

    If the injected stream is removed successfully, all users in the channel receive the [AgoraRTCClient.on("user-left")]event_user_left and [AgoraRTCClient.on("user-unpublished")]event_user_unpublished callbacks.

    Returns Promise<void>

Live Streaming Methods

  • Publishes the local stream to the CDN.

    See Push Streams to the CDN for details.

    Note:

    • This method adds only one stream HTTP/HTTPS URL address each time it is called.
    • Pushing streams to the CDN is not supported on mobile devices.

    Parameters

    • url: string

      The CDN streaming URL in the RTMP format. ASCII characters only.

    • Optional transcodingEnabled: boolean

      Whether to enable live transcoding. Transcoding sets the audio and video profiles and the picture-in-picture layout for the stream to be pushed to the CDN. It is often used to combine the audio and video streams of multiple hosts in a CDN live stream.

      If set as true, setLiveTranscoding must be called before this method.

      • true: Enable transcoding.
      • false: (Default) Disable transcoding.

    Returns Promise<void>

  • Removes a URL from CDN live streaming.

    This method removes only one URL address each time it is called. To remove multiple URLs, call this method multiple times.

    Parameters

    • url: string

      The URL to be removed.

    Returns Promise<void>

Other Methods

  • Enables the volume indicator.

    This method enables the SDK to regularly report the remote users who are speaking and their volumes.

    After the volume indicator is enabled, the SDK triggers the [AgoraRTCClient.on("volume-indicator")]event_volume_indicator callback to report the volumes every two seconds, regardless of whether there are active speakers in the channel.

    client.enableAudioVolumeIndicator();
    client.on("volume-indicator", volumes => {
    volumes.forEach((volume, index) => {
    console.log(`${index} UID ${volume.uid} Level ${volume.level}`);
    });
    })

    Returns void

  • Gets all the listeners for a specified event.

    Parameters

    • event: string

      The event name.

    Returns Function[]

  • Since
       4.1.0

    Gets the statistics of a local video track.

    Note: You cannot get the encodeDelay property on iOS.

    Returns LocalVideoTrackStats

  • Gets the statistics of the call.

    Returns

    The statistics of the call.

    Returns AgoraRTCStats

  • Since
       4.2.0

    Gets the network quality of all the remote users to whom the local user subscribes.

    Returns {
        [uid: string]: NetworkQuality;
    }

  • Removes the listener for a specified event.

    Parameters

    • event: string

      The event name.

    • listener: Function

      The callback that corresponds to the event listener.

    Returns void

  • Parameters

    Returns void

  • Parameters

    • event: "user-joined"
    • listener: ((user: IAgoraRTCRemoteUser) => void)
        • (user: IAgoraRTCRemoteUser): void
        • Occurs when a remote user or host joins the channel.

          • In a communication channel, this callback indicates that another user joins the channel and reports the ID of that user. The SDK also triggers this callback to report the existing users in the channel when a user joins the channel.
          • In a live-broadcast channel, this callback indicates that a host joins the channel. The SDK also triggers this callback to report the existing hosts in the channel when a user joins the channel. Ensure that you have no more than 17 hosts in a channel.

          The SDK triggers this callback when one of the following situations occurs:

          • A remote user or host joins the channel by calling join.
          • A remote audience switches the user role to host by calling setClientRole after joining the channel.
          • A remote user or host rejoins the channel after a network interruption.
          • A host injects an online media stream into the channel by calling addInjectStreamUrl.

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          Returns void

    Returns void

  • Parameters

    • event: "user-left"
    • listener: ((user: IAgoraRTCRemoteUser, reason: string) => void)
        • (user: IAgoraRTCRemoteUser, reason: string): void
        • Occurs when a remote user becomes offline.

          The SDK triggers this callback when one of the following situations occurs:

          • A remote user calls leave and leaves the channel.
          • A remote user has dropped offline. If no data packet of the user or host is received for 20 seconds, the SDK assumes that the user has dropped offline. A poor network connection may cause a false positive.
          • A remote user switches the client role from host to audience.

          In live-broadcast channels, the SDK triggers this callback only when a host goes offline.

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          • user: IAgoraRTCRemoteUser

            Information of the user who is offline.

          • reason: string

            Reason why the user has gone offline.

            • "Quit": The user calls leave and leaves the channel.
            • "ServerTimeOut": The user has dropped offline.
            • "BecomeAudience": The client role is switched from host to audience.

          Returns void

    Returns void

  • Parameters

    • event: "user-published"
    • listener: ((user: IAgoraRTCRemoteUser, mediaType: "audio" | "video") => void)
        • (user: IAgoraRTCRemoteUser, mediaType: "audio" | "video"): void
        • Occurs when a remote user publishes an audio or video track.

          You can subscribe to and play the audio or video track in this callback. See subscribe and [RemoteTrack.play]play.

          The SDK also triggers this callback to report the existing tracks in the channel when a user joins the channel.

          client.on("user-published", async (user, mediaType) => {
          await client.subscribe(user, mediaType);
          if (mediaType === "video") {
          console.log("subscribe video success");
          user.videoTrack.play("xxx");
          }
          if (mediaType === "audio") {
          console.log("subscribe audio success");
          user.audioTrack.play();
          }
          })

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          • user: IAgoraRTCRemoteUser

            Information of the remote user.

          • mediaType: "audio" | "video"

            Type of the track.

            • "audio": The remote user publishes an audio track.
            • "video": The remote user publishes a video track.

          Returns void

    Returns void

  • Parameters

    • event: "user-unpublished"
    • listener: ((user: IAgoraRTCRemoteUser, mediaType: "audio" | "video") => void)
        • (user: IAgoraRTCRemoteUser, mediaType: "audio" | "video"): void
        • Occurs when a remote user unpublishes an audio or video track.

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          • user: IAgoraRTCRemoteUser

            Information of the remote user.

          • mediaType: "audio" | "video"

            Type of the track.

            • "audio": The remote user unpublishes an audio track.
            • "video": The remote user unpublishes a video track.

          Returns void

    Returns void

  • Parameters

    • event: "user-info-updated"
    • listener: ((uid: UID, msg: "mute-audio" | "mute-video" | "enable-local-video" | "unmute-audio" | "unmute-video" | "disable-local-video") => void)
        • (uid: UID, msg: "mute-audio" | "mute-video" | "enable-local-video" | "unmute-audio" | "unmute-video" | "disable-local-video"): void
        • Reports the state change of users using the Agora RTC Native SDK when your scenario involves the Native SDK.

          This event is only for synchronizing states with the clients that integrate the Native SDK.

          In most cases, you only need to listen for [user-published]IAgoraRTCClient.event_user_published and [user-unpublished]IAgoraRTCClient.event_user_unpublished events for operations including subscribeing, unsubscribing, and displaying whether the remote user turns on the camera and microphone. You do not need to pay special attention to user states since the SDK automatically handles user states.

          This event indicating the media stream of a remote user is active does not necessarily mean that the local user can subscribe to this remote user. The local user can subscribe to a remote user only when receiving the [user-published]IAgoraRTCClient.event_user_published event.

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          • uid: UID

            The ID of the remote user.

          • msg: "mute-audio" | "mute-video" | "enable-local-video" | "unmute-audio" | "unmute-video" | "disable-local-video"

            The current user state.

          Returns void

    Returns void

  • Parameters

    • event: "media-reconnect-start"
    • listener: ((uid: UID) => void)
        • (uid: UID): void
        • Occurs when the SDK starts to reestablish the media connection for publishing and subscribing.

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          • uid: UID

            The ID of the user who reestablishes the connection. If it is the local uid, the connection is for publishing; if it is a remote uid, the connection is for subscribing.

          Returns void

    Returns void

  • Parameters

    • event: "media-reconnect-end"
    • listener: ((uid: UID) => void)
        • (uid: UID): void
        • Occurs when the SDK ends reestablishing the media connection for publishing and subscribing.

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          • uid: UID

            The ID of the user who reestablishes the connection. If it is the local uid, the connection is for publishing; if it is a remote uid, the connection is for subscribing.

          Returns void

    Returns void

  • Parameters

    • event: "stream-type-changed"
    • listener: ((uid: UID, streamType: RemoteStreamType) => void)
        • (uid: UID, streamType: RemoteStreamType): void
        • Occurs when the type of a remote video stream changes.

          The SDK triggers this callback when a high-quality video stream changes to a low-quality video stream, or vice versa.

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          • uid: UID

            The ID of the remote user.

          • streamType: RemoteStreamType

            The new stream type:

            • 0: High-bitrate, high-resolution video stream.
            • 1: Low-bitrate, low-resolution video stream.

          Returns void

    Returns void

  • Parameters

    • event: "stream-fallback"
    • listener: ((uid: UID, isFallbackOrRecover: "fallback" | "recover") => void)
        • (uid: UID, isFallbackOrRecover: "fallback" | "recover"): void
        • Occurs when a remote video stream falls back to an audio stream due to unreliable network conditions or switches back to video after the network conditions improve.

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          • uid: UID

            The ID of the remote user.

          • isFallbackOrRecover: "fallback" | "recover"

            Whether the remote media stream falls back or recovers:

            • "fallback": The remote media stream falls back to audio-only due to unreliable network conditions.
            • "recover": The remote media stream switches back to the video stream after the network conditions improve.

          Returns void

    Returns void

  • Parameters

    Returns void

  • Parameters

    Returns void

  • Parameters

    • event: "volume-indicator"
    • listener: ((result: {
          level: number;
          uid: UID;
      }[]) => void)
        • (result: {
              level: number;
              uid: UID;
          }[]): void
        • Reports all the speaking remote users and their volumes.

          It is disabled by default. You can enable this callback by calling enableAudioVolumeIndicator. If enabled, it reports the users' volumes every two seconds regardless of whether there are users speaking.

          The volume is an integer ranging from 0 to 100. Usually a user with volume above five is a speaking user.

          client.on("volume-indicator", function(result){
          result.forEach(function(volume, index){
          console.log(`${index} UID ${volume.uid} Level ${volume.level}`);
          });
          });

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          • result: {
                level: number;
                uid: UID;
            }[]

          Returns void

    Returns void

  • Parameters

    • event: "crypt-error"
    • listener: (() => void)
        • (): void
        • Occurs when decryption fails.

          The SDK triggers this callback when the decryption fails during the process of subscribing to a stream. The failure is usually caused by incorrect encryption settings. See setEncryptionConfig for details.

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Returns void

    Returns void

  • Parameters

    • event: "token-privilege-will-expire"
    • listener: (() => void)
        • (): void
        • Occurs 30 seconds before a token expires.

          You must request a new token from your server and call renewToken to pass a new token as soon as possible.

          client.on("token-privilege-did-expire", async () => {
          await client.join(<APPID>, <CHANNEL NAME>, <NEW TOKEN>);
          });

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Returns void

    Returns void

  • Parameters

    • event: "token-privilege-did-expire"
    • listener: (() => void)
        • (): void
        • Occurs when the token expires.

          You must request a new token from your server and call join to use the new token to join the channel.

          client.on("token-privilege-did-expire", async function(){
          //After requesting a new token
          await client.renewToken(token);
          });

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Returns void

    Returns void

  • Parameters

    • event: "network-quality"
    • listener: ((stats: NetworkQuality) => void)
        • (stats: NetworkQuality): void
        • Reports the network quality of the local user.

          After the local user joins the channel, the SDK triggers this callback to report the uplink and downlink network conditions of the local user once every two second.

          Agora recommends listening for this event and displaying the network quality.

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          Returns void

    Returns void

  • Parameters

    • event: "live-streaming-error"
    • listener: ((url: string, err: AgoraRTCError) => void)
        • (url: string, err: AgoraRTCError): void
        • Occurs when an error occurs in CDN live streaming.

          After the method call of startLiveStreaming succeeds, the SDK triggers this callback when errors occur during CDN live streaming.

          You can visit err.code to get the error code. The errors that you may encounter include:

          • LIVE_STREAMING_INVALID_ARGUMENT: Invalid argument.
          • LIVE_STREAMING_INTERNAL_SERVER_ERROR: An error occurs in Agora's streaming server.
          • LIVE_STREAMING_PUBLISH_STREAM_NOT_AUTHORIZED: The URL is occupied.
          • LIVE_STREAMING_TRANSCODING_NOT_SUPPORTED: Sets the transcoding parameters when the transcoding is not enabled.
          • LIVE_STREAMING_CDN_ERROR: An error occurs in the CDN.
          • LIVE_STREAMING_INVALID_RAW_STREAM: Timeout for the CDN live streaming. Please check your media stream.

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          • url: string

            The URL of the CDN live streaming that has errors.

          • err: AgoraRTCError

            The error details.

          Returns void

    Returns void

  • Parameters

    • event: "live-streaming-warning"
    • listener: ((url: string, warning: AgoraRTCError) => void)
        • (url: string, warning: AgoraRTCError): void
        • Occurs when a warning occurs in CDN live streaming.

          After the method call of startLiveStreaming succeeds, the SDK triggers this callback when warnings occur during CDN live streaming.

          You can visit err.code to get the warning code. The warnings that you may encounter include:

          • LIVE_STREAMING_WARN_STREAM_NUM_REACH_LIMIT: Pushes stremas to more than 10 URLs.
          • LIVE_STREAMING_WARN_FAILED_LOAD_IMAGE: Fails to load the background image or watermark image.
          • LIVE_STREAMING_WARN_FREQUENT_REQUEST: Pushes stremas to the CDN too frequently.

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          • url: string

            The URL of the CDN live streaming that has warnings.

          • warning: AgoraRTCError

          Returns void

    Returns void

  • Parameters

    • event: "stream-inject-status"
    • listener: ((status: InjectStreamEventStatus, uid: UID, url: string) => void)
        • (status: InjectStreamEventStatus, uid: UID, url: string): void
        • Note: Agora will soon stop the service for injecting online media streams on the client. If you have not implemented this service, Agora recommends that you do not use it.

          Occurs when the status of the media stream injected by addInjectStreamUrl updates.

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          • status: InjectStreamEventStatus

            The current status.

          • uid: UID

            The ID of the user who injects the media stream.

          • url: string

            The URL address of the media stream.

          Returns void

    Returns void

  • Parameters

    • event: "exception"
    • listener: ((event: {
          code: number;
          msg: string;
          uid: UID;
      }) => void)
        • (event: {
              code: number;
              msg: string;
              uid: UID;
          }): void
        • Reports exceptions in the channel.

          Exceptions are not errors, but usually reflect quality issues.

          This callback also reports recovery from an exception.

          Each exception corresponds to a recovery event.

          Exception

          Code Message Exception
          1001 FRAMERATE_INPUT_TOO_LOW Captured video frame rate is too low
          1002 FRAMERATE_SENT_TOO_LOW Sent video frame rate is too low
          1003 SEND_VIDEO_BITRATE_TOO_LOW Sent video bitrate is too low
          1005 RECV_VIDEO_DECODE_FAILED Decoding received video fails
          2001 AUDIO_INPUT_LEVEL_TOO_LOW Sent audio volume is too low
          2002 AUDIO_OUTPUT_LEVEL_TOO_LOW Received audio volume is too low
          2003 SEND_AUDIO_BITRATE_TOO_LOW Sent audio bitrate is too low
          2005 RECV_AUDIO_DECODE_FAILED Decoding received audio fails

          Recoveries

          Code Message Recovery
          3001 FRAMERATE_INPUT_TOO_LOW_RECOVER Captured video frame rate recovers
          3002 FRAMERATE_SENT_TOO_LOW_RECOVER Sent video frame rate recovers
          3003 SEND_VIDEO_BITRATE_TOO_LOW_RECOVER Sent video bitrate recovers
          3005 RECV_VIDEO_DECODE_FAILED_RECOVER Decoding received video recovers
          4001 AUDIO_INPUT_LEVEL_TOO_LOW_RECOVER Sent audio volume recovers
          4002 AUDIO_OUTPUT_LEVEL_TOO_LOW_RECOVER Received audio volume recovers
          4003 SEND_AUDIO_BITRATE_TOO_LOW_RECOVER Sent audio bitrate recovers
          4005 RECV_AUDIO_DECODE_FAILED_RECOVER Decoding received audio recovers

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          • event: {
                code: number;
                msg: string;
                uid: UID;
            }
            • code: number

              The event code.

            • msg: string

              The event message.

            • uid: UID

              The ID of the user who has experienced the exception or recovery event.

          Returns void

    Returns void

  • Parameters

    • event: "is-using-cloud-proxy"
    • listener: ((isUsingProxy: boolean) => void)
        • (isUsingProxy: boolean): void
        • Since
             4.4.0

          After the method call of publish succeeds, the SDK triggers this callback to indicate whether the media stream is forwarded by the Agora cloud proxy service.

          As Member Of

          IAgoraRTCClient

          Group

          Events

          Parameters

          • isUsingProxy: boolean

            Whether the media stream is forwarded by the Agora cloud proxy service.

            • true: Forwarded by the Agora cloud proxy service.
            • false: Not forwarded by the Agora cloud proxy service.

          Returns void

    Returns void

  • Parameters

    • event: string
    • listener: Function

    Returns void

  • Listens for a specified event once.

    When the specified event happens, the SDK triggers the callback that you pass and then removes the listener.

    Parameters

    • event: string

      The event name.

    • listener: Function

      The callback to trigger.

    Returns void

  • Removes all listeners for a specified event.

    Parameters

    • Optional event: string

      The event name. If left empty, all listeners for all events are removed.

    Returns void

  • Renews the token.

    The token expires after a set time once token is enabled. When the SDK triggers the [AgoraRTCClient.on("token-privilege-will-expire")]event_token_privilege_will_expire callback, call this method to pass a new token. Otherwise the SDK disconnects from the server.

    Parameters

    • token: string

      The new token.

    Returns Promise<void>

  • Sets the user role and level in a live streaming (when [mode]ClientConfig.mode is "live").

    • The user role determines the permissions that the SDK grants to a user, such as permission to publish local streams, subscribe to remote streams, and push streams to a CDN address. You can set the user role as "host" or "audience". A host can publish and subscribe to streams, while an audience member can only subscribe to streams. The default role in a live streaming is "audience". Before publishing tracks, you must call this method to set the user role as "host".
    • The detailed options of a user, including the user level. The user level determines the level of services that a user can enjoy within the permissions of the user's role. For example, an audience can choose to receive remote streams with low latency or ultra low latency. Levels affect prices.

    Note:

    • When [mode]ClientConfig.mode is "rtc", this method does not take effect and all users are "host" by default.
    • If the local client switches the user role after joining a channel, the SDK triggers the [AgoraRTCClient.on("user-joined")]event_user_joined or [AgoraRTCClient.on("user-left")]event_user_left callback on the remote client.
    • To switch the user role to "audience" after calling publish, call unpublish first. Otherwise the method call fails and throws an exception.

    Parameters

    Returns Promise<void>

  • Sets the encryption configurations.

    Use this method to enable the built-in encryption before joining a channel.

    If the encryption configurations are incorrect, the SDK triggers the [AgoraRTCClient.on("crypt-error")]event_crypt_error callback when publishing tracks or subscribing to tracks.

    Notes:

    • All users in a channel must use the same encryption mode, secret, and salt.
    • You must call this method before joining a channel, otherwise the method call does not take effect and encryption is not enabled.
    • As of v4.7.0, after a user leaves the channel, the SDK automatically disables the built-in encryption. To re-enable the built-in encryption, call this method before the user joins the channel again.
    • Do not use this method for CDN live streaming.

    Parameters

    • encryptionMode: EncryptionMode

      The encryption mode.

    • secret: string

      The encryption secret. ASCII characters only. When a user uses a weak secret, the SDK outputs a warning message to the Web Console and prompts the users to set a strong secret. A strong secret must contain at least eight characters and be a combination of uppercase and lowercase letters, numbers, and special characters. Due to browser encryption algorithm limitations, the secret length cannot exceed 62 characters. Agora recommends you use OpenSSL to generate the secret on your server. For details, see Media Stream Encryption.

    • Optional salt: Uint8Array

      The salt. Only valid when you set the encryption mode as "aes-128-gcm2" or "aes-256-gcm2". Agora recommends you use OpenSSL to generate the salt on your server. For details, see Media Stream Encryption.

    Returns void

Proxy Methods

  • Enables cloud proxy.

    You must call this method before joining the channel or after leaving the channel.

    For the extra settings required for using the cloud proxy service, see Use Cloud Proxy.

    Parameters

    • Optional mode: number

      Cloud proxy mode.

    Returns void

  • Disables cloud proxy.

    You must call this method before joining the channel or after leaving the channel.

    Returns void

Generated using TypeDoc