Skip to main content

Backstage

Introduction

By default, livestreams are created in backstage mode, while in backstage mode, streams can only be accessed by admin-like users. This is necessary because it makes it possible to create the setup in advance and to notify and grant access to viewers when the event starts. To allow regular users to join a call ahead of time, even if the call is still in backstage mode you can create the call and set the join ahead time backstage setting. The default value of join_ahead_time_seconds is 0, which means that users can only join the call when the call starts.

Configuration

To create a call in backstage mode and allow users to join ahead of the scheduled time you can use the join_ahead_time_seconds settings option.

startsAt = new Date(Date.now() + 30 * 60 * 1000);
client.call('livestream', 'test-outgoing-call').getOrCreate({
data: {
starts_at: startsAt.toISOString(),
created_by_id: 'john',
settings_override: {
backstage: {
enabled: true,
join_ahead_time_seconds: 300,
},
},
},
});

You can change the backstage mode and join ahead time settings on the call type or on the call level. Allowing the users to join a call in backstage is optional.

// call level
call.update({
settings_override: {
backstage: {
enabled: true,
join_ahead_time_seconds: 300,
},
},
});

// or call type level
client.video.updateCallType('<call type name>', {
settings: {
backstage: {
enabled: true,
join_ahead_time_seconds: 300,
},
},
});

Setting the backstage mode to false means that calls won't be created in backstage mode, and anyone can join the call.

Backstage Permissions

When a call is in backstage mode, only users with the join-backstage capability are allowed to join.

client.video.updateCallType('<call type name>', {
grants: {
host: [VideoOwnCapability.JOIN_BACKSTAGE],
},
});

With this approach you can add multiple members that have the join-backstage capability, which allows you to have multiple hosts. Or, you can bypass this check and allow users to join by creating time with specifying the join_ahead_time_seconds backstage option.

Go Live

When the hosts are ready to start the stream and allow viewers to join, you can call the GoLive method.

Optionally, you can start the HLS broadcast and/or recording at the same time as going live.

call.goLive();

// optionally start HLS broadcast and/or recording
call.goLive({ start_hls: true, start_recording: true });

It's also possible to send push notifications to call members on this event, for more information see the Call Types page.

Stop Live

When the stream ends the StopLive endpoint will remove the viewers that are still in the call, and prevent from new viewers to join.

A call can enter and leave backstage mode multiple times.

call.stopLive();

Did you find this page helpful?