Skip to content

Instantly share code, notes, and snippets.

@DanyF-github
Created March 11, 2022 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DanyF-github/ffe7eadee0bc193dabc9c57fb185c817 to your computer and use it in GitHub Desktop.
Save DanyF-github/ffe7eadee0bc193dabc9c57fb185c817 to your computer and use it in GitHub Desktop.

In this blog post, I’d like to show you how you can add transcription/closed captioning to your Vonage Video application. We are going to leverage Symbl.ai web SDK to achieve this. Audio will be sent from the client-side to Symbl.ai, hence there are no changes required on the server-side. Symbl.ai allows you to easily add conversational intelligence into your voice and video applications with their suite of APIs and developer tools.

Why Do You Need Captions?

Accessibility was one of the main requirements when communications moved online during the pandemic. Do you have customers with different accents you sometimes struggle to understand? Do you want to see what your users are concerned about, what they want, what they struggle with? Or are you simply looking to store transcriptions of a call so that you can later perform some analysis on it? We’ve got you covered. Stick around. If you prefer to watch a video of the finished application, feel free to check it out.

In this blog post, I am going to show you how to add closed captioning in a one-to-one call. Check out the GitHub repository for the complete source code, which shows examples of sentiment analysis graphs. It also provides you with insights and a summary of your call, in addition to closed captions.

I’m going to be building with ReactJS, but you can use vanilla JS or any framework/library of your choice.

Requirements

In order to run this sample app, you’re going to need a few things:

Architecture

The following diagram shows what we’re going to build today. For the sake of simplicity, this blog post is going to cover the integration with Symbl.ai on the client-side. For a more in-depth explanation of the app architecture you can check the Readme file of the application.

The Vonage Client SDK drives our video application. As you can see in the following diagram, the Client SDK will communicate with the Symbl.ai SDK by opening a bidirectional connection through a WebSocket. The audio from the participants will be fed to the Symbl.ai SDK and we will receive the transcript of the audio.

In order to authenticate the Vonage session and the Symbl.ai connection on the client-side we have created an API in our Node.js server to generate credentials. This API will rely on the Vonage Node.js SDK and Symbl.ai API.

Diagram of Vonage Video application connecting to Symbl.ai

Creating Usernames

For a one-to-one call, the Symbl.ai SDK is going to open a connection with Symbl.ai infrastructure where two users will send audio. Once we receive the output of the transcription, we need to know which user the captions belong to. That is why our app will have the concept of users with usernames. This way, when we create the connectionConfig in the useSymblai hook, we can inform Symbl.ai who is speaking and when. The output from Symbl.ai includes the name of the speaker along with the transcript, so we can know who the transcript belongs to at all times.

To start with, I have created a preferences context to be able to access the username and conversationId anywhere in our application. The conversationId is a unique identifier for a given conversation that takes place within the Symbl.ai infrastructure. It may have one or more users. It is not necessary to enable captioning, but we will use the conversationId to make API calls to Symbl.ai to retrieve information about sentiment analysis and a conversation summary. We will cover these topics in the Bonus section.

https://gist.github.com/86435d7de65e3858050e70c76ea5f8e9

https://gist.github.com/229cd724bcdfc44ed388231620e44661

Now, we only need to wrap our app with the ContextProvider so that we can access the preferences anywhere in our app.

https://gist.github.com/684a81d578672d5f48b3a8cb3cfdb68c

As you can see in the structure of our app, by default the user will be redirected to the WaitingRoom component. There, we will ask the user to type their username and a room name. You can see the implementation of the waiting room here. The Protected route is a component that will check whether the user has set up a username, and will redirect the user to the waiting room if not. You can see the implementation of this route here. This is to prevent a user from joining a room without having chosen a name. If the user has set up a username already, we will redirect the user to the Wrapper component, which contains a Header and the main component. If you’re curious, you can have a look at this component here.

This is what the Waiting Room looks like:

Waiting Room UI requesting username and room name

UseSymblai Hook

We are going to make use of the Symbl.ai web SDK to abstract away the complexity of opening a WebSocket connection and piping the audio. In a React application, it is a good practice to write a custom React hook to make our app more reusable and the code cleaner. You can see the whole implementation of the custom hook here, but I’m going to explain every step in detail.

Let’s install and import the SDK:

npm i @symblai/symbl-web-sdk

import symbl from '@symblai/symbl-web-sdk';

We are going to create a custom hook that will accept the publisher from the Vonage Video session, as well as a boolean flag that indicates if the publisher has started sending media. The custom hook will return our captions, the other party’s captions, and the name of the speaker.

https://gist.github.com/14f23e9c9aa98ef15ea126a408bdde0f

https://gist.github.com/3b397154e159605b326b48f439bae3f4

We are creating a few state variables to store our own captions, the other party’s captions, the name of the person speaking, and the token. We will also create a ref to the streamObject returned by Symbl.ai once we establish a connection with them. We will consume the context that we have previously created.

We’re going to create a useEffect hook that will only run on the first render. The goal of this hook is to get the credentials for the video session and a token for the Symbl.ai connection. The getToken and getSymblToken functions are implemented here. They will communicate with an API on our server side that will handle the credentials generation. We will get the roomName from the URL parameters.

https://gist.github.com/86c6bb67a6f9122b01a162fe32a7389f

We will go ahead and define another useEffect hook that will run once we have published to the session and start the connection with Symbl.ai. We will get a mediaStreamTrack from the publisher once we’re publishing to the session. We will then leverage the Web Audio API to create a MediaStreamSource that will be used as source in the connectionConfig for Symbl.ai.

If you don’t want to get the mediaStream from the Vonage publisher, and just get the audio from the microphone, you can do so by not specifying any source in the connectionConfig. By default, the Symbl.ai Web SDK will handle audio context and source nodes on its own.

In our application, for the sake of simplicity, we’re assigning id the value of roomName, which is a unique identifier used by the clients to connect to the conversation and push audio to Symbl.ai. In a real world application, you need to ensure that this id is unique and it’s not reused again after the conversation finishes.

You can see that there’s a userId string in the speaker object of the connectionConfig. If you set up a valid email address there, you will receive an email with some insights from the conversation. If you leave it blank, it won’t send you an email. However, we want to set up the speaker name so that we know whose speech it is when we receive the output from Symbl.ai. As you can see, we’re listening to the onSpeechDetected callback:

https://gist.github.com/2c71b2a816938709269be4a44b96f5f1

We have defined an asynchronous function at the end of our hook that will be called in order to create a connection with Symbl.ai. This is needed because the WebSocket is started in a non-processing state, so we need to instruct Symbl.ai when we want to start the connection.

At this point, we can use our custom hook in the component of our choice. In this application, it will be used in the Main component. We first need to import it:

https://gist.github.com/209a3e7634494c83566f7fce58cb295b

And then we can destructure the data by calling the custom hook, passing it the publisher and the isPublishing boolean variable:

https://gist.github.com/2167259f0c0c284dcb8058e53ca7c92f

At this point, you can just display the captions in your UI or carry out any logic that you want to. You can have a look at the implementation of the main video component here. To recap, captions are the other party’s captions, myCaptions are your own captions, and name is just the name of the other person.

Bonus

Symbl.ai not only provides you with captioning features, but also sentiment analysis, insights extraction, summary of the call, analytics, and much more. I’ve built a more complete sample application showcasing these features.

You can find more information about the features the app contains in the API reference:

The following video shows you what the application looks like. There are two users in the call, Javier and Binoy. As you can see at the top left, there is a graph that shows you the sentiment analysis score for the other party’s speech (ranging from -1 to 1, with 1 being very positive and -1 being very negative). In this case, we can see that Binoy was quite positive as I was talking to him about the cool features Symbl.ai offers.

On the bottom left, you can see some action_items that are picked up by the Symbl.ai API. It contains the name of the assignee when available. So in this case, we can see some questions, such as Binoy asking Javier if Symbl.ai was easy to integrate with our Video APIs, and an action item which is Binoy needing to “check them out” (referring to Symbl.ai).

When you click on “finish the call”, the app will redirect you to the analytics page where you can see individual speaker breakdown metrics (talking and silence time) and metrics for the overall meeting. In this case, we can see the statistics for Javier and Binoy. Another very cool feature Symbl.ai provides is the ability to summarise the call using natural language processing. This provides you a few sentences with a brief of the call. This way, you can get an idea about what the call was about by reading some highlights.

This is very helpful, as it can help to avoid long follow-up emails with a recap and action items after a call. Recognizing brand names is always challenging, but we can see how, in this case, Javier has already done an integration with an AI company that allows you to enable live captioning, sentiment analysis, and more. Bear in mind that this was a very short meeting, but the longer the meeting is, the more accurate the summary will be.

What Next?

Hopefully, you now know how you can enable live captioning in your Vonage Video application and gain further insights into your video calls. The completed project is available on GitHub,

Let us know on Twitter what projects you build using the Vonage Video API!

Also, make sure to join our community on Slack.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment