DEV Community

Cover image for Building a Livestream Platform
Braden Riggs for Dolby.io

Posted on • Originally published at dolby.io

Building a Livestream Platform

With competition rising in the live streaming space, companies are battling it out to offer more compelling streaming experiences, whether that is for live events, e-learning, or remote post-production. In order to stand out, solutions must balance offering high-quality audio and video in addition to offering optimal content delivery speeds, leading platforms such as Twitch and YouTube Live to sacrifice real-time (10-15 seconds of latency) in favor of quality. But what if you didn't have to sacrifice at all, and could have both quality and speed? In this guide, we'll explore building a webRTC low latency streaming platform capable of delivering 4k streams with just a few lines of JavaScript.

Building a Low Latency Livestreaming platform with Dolby.io Millicast and JavaScript.

To get started building your live stream platform, we first have to set up a free Dolby.io Millicast account here. Dolby.io Millicast is an ultra-low latency platform that provides APIs, SDKs, and integrations for content delivery with a delay of 500 milliseconds or less to anywhere in the world using a technology called WebRTC. The free account is hard-capped at 50 Gigabytes of data transfer a month, which will be plenty for building and testing your JavaScript Livestream platform.

The Millicast webRTC Javascript SDK

To get started, clone the GitHub repo, which contains an example app demonstrating how to implement everything you'll need for building a Millicast WebRTC Livestream viewing platform. 

The landing page for the Livestream viewer where users are required to input the stream name and account ID. Build a quality ultra low latency livestream platform that can support hundreds of thousands of viewers with just a few lines of JavaScript by leveraging the power of WebRTC and Dolby.io Millicast.

The landing page for the Livestream viewer where users are required to input the stream name and account ID.

Once users log into the Livestream viewer they connect to a low-latency webRTC stream powered by Dolby.io Millicast. Build a quality ultra low latency livestream platform that can support hundreds of thousands of viewers with just a few lines of JavaScript by leveraging the power of WebRTC and Dolby.io Millicast.

Once users log into the Livestream viewer they connect to a low-latency webRTC stream powered by Dolby.io Millicast.

To test out this app, we need to navigate to the dashboard of your newly created Millicast account. There you'll see a header, *Stream Tokens, *which includes a list of your streaming tokens. If you've just created an account you'll only have one token, which you can click to open its settings.

The Millicast dashboard landing page. Build a quality ultra low latency livestream platform that can support hundreds of thousands of viewers with just a few lines of JavaScript by leveraging the power of WebRTC and Dolby.io Millicast.

The Millicast dashboard landing page.

Clicking on the token name brings you into the token settings where you can create a stream. Build a quality ultra low latency livestream platform that can support hundreds of thousands of viewers with just a few lines of JavaScript by leveraging the power of WebRTC and Dolby.io Millicast.

Clicking on the token name brings you into the token settings where you can create a stream.

From Settings switch from Token Details to the API tab. In this tab, you'll see lots of different tokens, endpoints, and information. We can disregard most of the info for this app and instead just copy the Account ID value and the Stream Name.  Next, switch back to the Token Details tab and click on the bright green Broadcast button. This will launch a WebRTC streaming tool where you can adjust settings and start streaming, although no one will be able to join when you do until you have a working stream viewer. For now, click on the start stream button to begin a Livestream. Finally, we can launch our cloned sample app by either using the Live Server extension for VS Code or just opening the *index.html *file in browser. With the sample app launched, you can connect to your Livestream by entering the Account ID and the Livestream Name.

Note: it's important to follow the best security practices when sharing or exposing any IDs or authentication parameters on the web.

To Summarize

  • Clone the Livestream sample project.
  • From your Millicast account locate your Stream Token Settings and get your Account ID and Livestream Name from the API tab.
  • Start broadcasting a Livestream from the Millicast dashboard.
  • Launch your sample app by opening index.html in browser.
  • Enter the Account ID and Livestream Name to view your stream.
  • Watch your Livestream!

What's cool about this sample app is, although it is simple to understand, the app could be hosted on a server and shared with anyone across the web, allowing them to watch what you're streaming from the Millicast dashboard.

So How Does the Millicast Livestream Viewer Work?

Millicast supports a JavaScript SDK which you can utilize as either an NPM package or with the JSDELIVR content delivery network (CDN). For this guide, we will be using the CDN option which we import into the head of our HTML file.

<script src="https://cdn.jsdelivr.net/npm/@millicast/sdk@latest/dist/millicast.umd.js"></script>
Enter fullscreen mode Exit fullscreen mode

This import allows us to utilize the tools offered in the SDK. We also need to include a video *tag and another script tag linking our HTML file to millicast_viewer.js*, otherwise, the rest of the HTML file is set dressing.

<video width="640" height="360" hidden="True" id="videoPlayer" controls class="vidBox"></video>
<script src="src/millicast_viewer.js"></script>
Enter fullscreen mode Exit fullscreen mode

With the Millicast SDK imported, our video player placed, and our HTML and JavaScript files linked, we can change over to millicast_viewer.js to learn about how we authenticate and connect to a Livestream.

There are three main steps for authenticating and connecting to a Millicast broadcast inside of millicast_viewer.js.

Step #1: Token Generator

The first step in connecting to a Millicast stream is to define our token generator. Since we imported the SDK via a CDN we need to preface Millicast SDK functions with window.millicast, then the function, in this case, Director.getSubscriber. Additionally, for the token generator, we also have to include the Stream Name and the Account ID. In our example we utilize user input to get these values, however, there are a variety of different options for generating a Millicast token. Using our token generator, we can create a Millicast View option which we will use to connect to the broadcast.

const tokenGenerator = () =>
        window.millicast.Director.getSubscriber({
            streamName: streamName,
            streamAccountId: accID,
        });
const millicastView = new window.millicast.View(streamName, tokenGenerator);
Enter fullscreen mode Exit fullscreen mode

Step #2: Adding the Stream to Video

Next, we need to add the stream to our video tag, defined in the HTML. To do this we define a function called addStreamToYourVideoTag and listen for a track event, such as a broadcast updating, to add to our video tag.

millicastView.on("track", (event) => {
        addStreamToYourVideoTag(event.streams[0]);
    });
Enter fullscreen mode Exit fullscreen mode

As for our function addStreamToYourVideoTag, it just takes in the stream element and sets our <video> tag's srcObject equal to it.

 

function addStreamToYourVideoTag(elem) {
    //Adds Stream to the <video> tag.
    let video = document.getElementById("videoPlayer");
    video.srcObject = elem;
    video.autoplay = true;
}
Enter fullscreen mode Exit fullscreen mode

Step #3: Connecting to the Stream

The final step in building our Livestream viewer is to specify a few stream settings and connect to the broadcast. First, we define an options object which contains three main parameters:

  • disableVideo: set to false because we want video-enabled.
  • disableAudio: set to false because we want audio enabled.
  • bandwidth: used to set data transfer limits, however, we set it to zero in this case which means unlimited bandwidth, since we are only testing the app.
const options = {
        disableVideo: false,
        disableAudio: false,
        bandwidth: 0,
    };
Enter fullscreen mode Exit fullscreen mode

Next, we can call the connect function using our millicastView object and our options object. We surround this function with a try-catch statement in case bandwidth issues prevent the broadcast from connecting immediately.

 

try {
        await millicastView.connect(options);
    } catch (e) {
        console.log("Connection failed, handle error", e);
        millicastView.reconnect();
    }
Enter fullscreen mode Exit fullscreen mode

With the connect step complete, we are now able to join a Millicast broadcast. We can see all these steps put together here and the result is a Livestream viewing platform powered by WebRTC.

Once users log into the Livestream viewer they connect to a low-latency webRTC stream powered by Dolby.io Millicast.

Once users log into the Livestream viewer they connect to a low-latency webRTC stream powered by Dolby.io Millicast.

Final Thoughts on Building the Millicast Livestream App

In this guide, we've outlined the fundamentals for building a low latency Livestream viewer in JavaScript that's powered by WebRTC. If you've been following along with the sample project code you'll notice a few extra parts and tools. For the most part, the additional code serves as set dressing, helping make the app look and function in a way you might expect a Livestream viewer to function, however, it is not core to connecting to a Millicast broadcast. As you play around and build with the SDK more you might find better ways to create and style your app for your personal goals so don't be afraid to play around with the code a bit. If you have any questions or are interested in learning more about Dolby.io Millicast feel free to reach out to our support or check out our documentation guides, which include many more SDKs and tools such as a Millicast OBS integration or an Unreal Engine Plugin.

Top comments (0)