Skip to main content

You are looking at Interactive Live Streaming v3.x Docs. The newest version is  Interactive Live Streaming 4.x

Android
iOS
macOS
Windows C++
Windows C#
Unity
Flutter
React Native
Electron
Cocos Creator
Cocos2d-x

Join Multiple Channels

Introduction

As of v3.0.0, the Agora Video SDK for Android enables users to join an unlimited number of channels at a time and to receive the audio and video streams of all the channels.

  • This feature applies to the live streaming channel profile. Do not use it for the communication profile.
  • As of v3.4.5, Agora optimizes the publishing logic in the multichannel scenario. If you have upgraded the SDK from an earlier version to v3.4.5 or later, Agora recommends that you adjust your publishing settings by referring to API changes to avoid any impact on your business functions.
  • Sample project

    Agora provides the following open-source sample projects on GitHub. You can download them and refer to the source code.

    Implementation

    The SDK uses the RtcChannel and IRtcChannelEventHandler classes to support the multi-channel function.

    You can call createRtcChannel multiple times to create multiple RtcChannel objects with different channelId, and then call joinChannel in RtcChannel to join the channel.

    The following are the major steps of implementing the multi-channel function:

    1. Call create to create and initialize RtcEngine.
    2. Call setChannelProfile to set the channel profile as live streaming.
    3. Call createRtcChannel to create an RtcChannel object with a channelId.
    4. Call setRtcChannelEventHandler of the RtcChannel class to receive callbacks in this channel.
    5. Call setClientRole of the RtcChannel class to set the user role.
    6. Call joinChannel of the RtcChannel class to join the channel. After joining a channel, the user publishes the local streams and automatically subscribes to the streams of all the other users in the channel by default. You can set the publishing and subscribing states in ChannelMediaOptions when joining a channel, and you can change the publishing and subscribing states in the methods with prefixes muteLocaland muteRemote of the RtcChannel class after joining a channel.
    7. Repeat steps 3, 4, 5, and 6 to join more channels.
  • Ensure that each channel you join has a unique channel name.
  • A user can publish local streams in only one channel at a time. Agora recommends joining a channel as a host when the user needs to publish local streams or as an audience member when the user does not need to publish local streams.
  • API call sequence

    Refer to the following API sequence to join multiple channels:

    1624445617154

    Sample code

    The following code demonstrates how to join an RtcChannel channel, and then publish the local streams in the first channel.

    1. Create and initialize RtcEngine.

    _1
    engine = RtcEngine.create(context.getApplicationContext(), getString(R.string.agora_app_id), iRtcEngineEventHandler);

    1. Enable the video module.

    _1
    engine.enableVideo();

    1. Set the channel profile as interactive live streaming.

    _1
    engine.setChannelProfile(Constants.CHANNEL_PROFILE_LIVE_BROADCASTING);

    1. Create an RtcChannel1 object, and listen for events in this channel.

    _10
    rtcChannel1 = engine.createRtcChannel(channel1);
    _10
    rtcChannel1.setRtcChannelEventHandler(new IRtcChannelEventHandler() {
    _10
    @Override
    _10
    // Listen for the onJoinChannelSuccess callback.
    _10
    // This callback occurs when the local user successfully joins the channel.
    _10
    public void onJoinChannelSuccess(RtcChannel rtcChannel1, int uid, int elapsed) {
    _10
    super.onJoinChannelSuccess(rtcChannel1, uid, elapsed);
    _10
    Log.i(TAG, String.format("onJoinChannelSuccess channel %s uid %d", channel1, uid));
    _10
    }
    _10
    });

    1. Set the user role as a host.

    _1
    rtcChannel1.setClientRole(Constants.CLIENT_ROLE_BROADCASTER);

    1. Pass in token and channelId to join the RtcChannel1 channel. The SDK publishes the local streams and automatically subscribes to the streams of all the other users in the channel by default.

    _6
    ChannelMediaOptions mediaOptions = new ChannelMediaOptions();
    _6
    mediaOptions.autoSubscribeAudio = true;
    _6
    mediaOptions.autoSubscribeVideo = true;
    _6
    mediaOptions.publishLocalAudio = true;
    _6
    mediaOptions.publishLocalVideo = true;
    _6
    int ret = rtcChannel1.joinChannel("Your token", "", 0, mediaOptions);

    1. Create an RtcChannel2 object, and listen for events in this channel.

    _10
    rtcChannel2 = engine.createRtcChannel(channel2);
    _10
    rtcChannel2.setRtcChannelEventHandler(new IRtcChannelEventHandler() {
    _10
    @Override
    _10
    // Listen for the onJoinChannelSuccess callback.
    _10
    // This callback occurs when the local user successfully joins the channel.
    _10
    public void onJoinChannelSuccess(RtcChannel rtcChannel2, int uid, int elapsed) {
    _10
    super.onJoinChannelSuccess(rtcChannel2, uid, elapsed);
    _10
    Log.i(TAG, String.format("onJoinChannelSuccess channel %s uid %d", channel2, uid));
    _10
    }
    _10
    });

    1. Set the user role as an audience member. Note that audience members cannot publish local streams.

    _1
    rtcChannel2.setClientRole(Constants.CLIENT_ROLE_AUDIENCE);

    1. Pass in token and channelId to join the RtcChannel2 channel. You need to set publishLocalAudio and publishLocalVideo to false; otherwise, the user fails to join the channel.

    _6
    ChannelMediaOptions mediaOptions = new ChannelMediaOptions();
    _6
    mediaOptions.autoSubscribeAudio = true;
    _6
    mediaOptions.autoSubscribeVideo = true;
    _6
    mediaOptions.publishLocalAudio = false;
    _6
    mediaOptions.publishLocalVideo = false;
    _6
    int ret = rtcChannel2.joinChannel("Your token", "", 0, mediaOptions);

    1. Leave and destroy the RtcChannel2 channel.

    _2
    rtcChannel2.leaveChannel();
    _2
    rtcChannel2.destroy();

    1. Leave and destroy the RtcChannel1 channel.

    _2
    rtcChannel1.leaveChannel();
    _2
    rtcChannel1.destroy();

    1. Destroy the RtcEngine object.

    _1
    engine.destroy();

    API reference

    Considerations

    Subscribing limits

    joinChannel in the RtcChannel class provides the media-subscription options (autoSubscribeAudio and autoSubscribeVideo) that determine whether to automatically subscribe to the remote streams after joining the channel. The default setting is to subscribe to all the streams automatically. After a user joins a channel, you can change the subscribing state by calling muteRemoteAudioStream or muteRemoteVideoStream.

    If you need to subscribe to the streams of specified users after joining an RtcChannel channel, refer to the following steps:

    1. Call joinChannel and set autoSubscribeAudio = false or autoSubscribeVideo = false of ChannelMediaOptions to unsubscribe from all remote users.
    2. In the channel, call muteRemoteAudioStream (uid,false) or muteRemoteVideoStream(uid,false) to subscribe to specified remote users.

    Set the remote video view

    In video scenarios, if the remote user joins the channel using RtcChannel, ensure that you specify the channel name of the remote user in VideoCanvas when setting the remote video view.


    _24
    // Set the remote user's view in the onUserJoined callback.
    _24
    public void onUserJoined(RtcChannel rtcChannel, int uid, int elapsed) {
    _24
    super.onUserJoined(rtcChannel, uid, elapsed);
    _24
    Log.i(TAG, "onUserJoined->" + uid);
    _24
    showLongToast(String.format("user %d joined!", uid));
    _24
    Context context = getContext();
    _24
    if (context == null) {
    _24
    return;
    _24
    }
    _24
    handler.post(() ->
    _24
    {
    _24
    SurfaceView surfaceView = null;
    _24
    if (fl_remote2.getChildCount() > 0) {
    _24
    fl_remote2.removeAllViews();
    _24
    }
    _24
    // Create a SurfaceView object.
    _24
    surfaceView = RtcEngine.CreateRendererView(context);
    _24
    surfaceView.setZOrderMediaOverlay(true);
    _24
    // Add the SurfaceView object to the layout of remote users.
    _24
    fl_remote2.addView(surfaceView, new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
    _24
    // Set the remote video view.
    _24
    engine.setupRemoteVideo(new VideoCanvas(surfaceView, RENDER_MODE_FIT, channel2, uid));
    _24
    });
    _24
    }

    Publishing limits

    The SDK supports publishing local streams to only one channel at a time. Agora recommends setting the user role as an audience when joining a channel where the user do not need to publish streams, and setting publishLocalAudio and publishLocalVideo in ChannelMediaOptions to false when joining the channel.

    In the interactive streaming profile, if a user joins the first channel as a host, the SDK publishes local streams in the first channel by default. If the user needs to join a second channel, you need to change the publishing state according to your actual scenario:

    • If the user does not need to publish local streams in the second channel, Agora recommends joining the second channel as an audience member (setClientRole(AUDIENCE)).
    • If the user needs to publish local streams in the second channel, the user needs to stop publishing in the current channel before joining the second channel. Agora recommends setting the user role as an audience member (setClientRole(AUDIENCE)) in the first channel and joining the second channel as a host (setClientRole(BROADCASTER)).

    If a user publishes local streams in a channel and you call the following methods in a second channel, the method call fails, and the SDK returns -5(ERR_REFUSED):

    • Set publishLocalAudio = true or publishLocalVideo = true when joining the second channel.
    • Call muteLocalAudioStream(false) or muteLocalVideoStream(false) after joining the second channel.
    • Call setClientRole(BROADCASTER).

    API changes

    As of v3.4.5, the RtcChannel class changes as follows:

    • Deprecates publish and unpublish, and adds muteLocalAudioStream and muteLocalVideoStream instead. After joining a channel, you can set the publishing state of the audio stream and video stream separately. muteLocalAudioStream and muteLocalVideoStream in the RtcEngine and RtcChannel classes control the publishing state of each channel in their respective classes only.
    • Adds the publishLocalAudio and publishLocalVideo members in ChannelMediaOptions. The default value is true. You can call joinChannel to join a channel and set the publishing state. If a user publishes streams in a channel, regardless of whether the user is a host or an audience member, they need to set publishLocalAudio and publishLocalVideo to false when joining other channels; otherwise, they fail to join the channel.
    • After calling setClientRole(BROADCASTER) of the RtcChannel class, the local user publishes audio and video streams by default. You no longer need to call publish.

    Earlier than v3.4.5:

    • Calling muteLocalAudioStream(true) or muteLocalVideoStream(true) in RtcEngine takes effect in channels created by both the RtcEngine and RtcChannel classes. muteLocalAudioStream and muteLocalVideoStream take effect when they are called before or after a user joins a channel.
    • joinChannel cannot set the publishing state of local streams.
    • Calling setClientRole(BROADCASTER) of the RtcChannel class does not publish local streams. You also need to call publish.

    Interactive Live Streaming