Skip to main content

Go Live On Social Media

Livestreaming allows participant to broadcast meeting on various social media platforms such as Facebook or Youtube. This guide will provide an overview of how participant can start and stop broadcasting meeting.

Live streaming attributes

  • autoStart: If it is true then live streaming will start automatically when the meeting starts, default value is false (You can't start live streaming during the meeting).
  • outputs: It's an array of object that contains RTMP url and stream key from the provided platforms such as Youtube or Facebook.
index.html
const config = {
// ...
livestream: {
autoStart: true,
outputs: [
{
url: "rtmp://x.rtmp.youtube.com/live2",
streamKey: "<STREAM KEY FROM YOUTUBE>",
},
],
},
// ...
};

Got a Question? Ask us on discord


Was this helpful?