Twilio Video allows you to add real-time video calling functionality to your web, iOS, and Android applications. The platform provides APIs, SDKs, and helper tools to capture, distribute, record, and render high quality audio and video applications.
Twilio Video is a real-time communications platform built on top of WebRTC. Using Twilio's REST APIs and client-side SDKs, you can build video calling functionality into your application. Twilio Video also includes global signaling infrastructure, STUN/TURN relays, and media services for multi-party video calls and recording, so that you can easily build scalable applications.
The programmable aspect of Twilio Video allows you to have full control over how video appears in your application. You are not constrained to any particular formats and can calibrate performance based on your use case. Twilio Video offers a wide range of tools to customize, troubleshoot, and optimize your video applications.
Twilio Video provides signaling, user access management, media processing, and media delivery to enable real-time communications.
Rooms are the core building block of a Twilio Video experience. Participants join a Room and can then exchange audio, video, and other data in real time with one another.
A Participant exchanges media with the Twilio Cloud, which acts as a Selective Forwarding Unit (SFU). Group Rooms can have up to 50 concurrent Participants and allow additional functionality such as recordings, Twilio Voice Participants, dominant speaker detection, and more.
A Twilio Video application requires both a frontend and a backend component:
Learn more about the components of Video Rooms in Understanding Video Rooms.
If you'd like to start exploring Twilio Video with a pre-built video conferencing application, you can deploy Twilio's open source demo application built with ReactJS to get started in just a few minutes.
The steps below outline the general flow you'll follow when creating a multi-participant video application with Twilio Video. Jump down to Resources for Getting Started if you want to see specific resources that you can use for building your first video application.
The three main steps are:
Participants will need an Access Token to connect to a Room. Access Tokens are JSON Web Tokens (JWT). They are short-lived credentials that are signed with your Twilio credentials. They contain grants (in the case of video applications, a video grant) that govern the actions the client holding the token is permitted to perform. This ensures that your application has full control of who is authorized to join the Room.
Access Token generation happens on the server side of your application. You can use Twilio's helper libraries to generate an Access Token.
If you do not want to host your own server to create Access Tokens, you can use a serverless Twilio Function to create an Access Token server hosted in Twilio's cloud. See an example of how to generate Access Tokens without a server or an example of creating a serverless video application in the Twilio Blog.
You can create a Video Room via the REST API in your backend server, or you can create and join rooms on the client side.
With client-side Room creation, you do not create Rooms before Participants join them. The first time a Participant tries to connect to a Room using an Access Token, Twilio will check to see if a Room with the specific name exists in your account. If it does not, Twilio will create the Room, following the default Room settings you have configured in the Default Room Settings section of the Twilio Console. If it does exist, Twilio will add the Participant to the existing Room.
You can also create Rooms before Participants join them via the Twilio Video REST API.
Using this method, you can specify settings for the Room when you create it with a POST
request. For example, you can specify the maximum number of Participants, maximum duration, etc. If you do not explicitly set these values when creating the Room, the Room settings will default to the settings you configured in the Twilio Console.
Check out Understanding Video Rooms for more information about the difference between creating Rooms via the REST API versus the client-side.
Once you are able to generate Access Tokens and have chosen how you'll create Video Rooms, you'll use a frontend SDK to create the client-side interface for the application. Note that each SDK's Getting Started Guide has code samples for how to perform the following steps for that specific SDK.
First, your application should fetch an Access Token for the end user from your Access Token server. Then, the frontend application will use that Access Token to connect to a Room. Once a user joins the Room with an Access Token, they become a Participant in the Room.
All Participants have tracks, which are streams of data generated by a microphone, camera, or other source. There are three types of Participant tracks:
Video Room tracks follow a publish/subscribe pattern. A Participant publishes their video, audio, and/or data tracks, and all other Participants can subscribe to those published tracks. All data goes from a Participant to the Twilio SFU, which then forwards that data to other Participants. Your application receives the data from all the tracks you have subscribed to, and you can choose how to display or play that data on the page.
Through the Participant track model, you can have fine-grained control over which tracks you display in your application. This can allow you to implement functionality such as muting/unmuting, presentation mode, paginating Participants' videos, hiding Participants from others, and more.
Twilio will send your frontend application notifications about events such as Participants connecting or disconnecting from a Room, or Participants publishing/unpublishing tracks and subscribing/unsubscribing from tracks.
Your application should listen for these signaling events so it can handle them appropriately. For example, your application should listen for the participantDisconnected
event so it can stop displaying a disconnected Participant's inactive data stream. You can learn more about the types of events that Twilio will signal in the documentation for the client-side SDK you are using.
You have a fully functioning multi-party video application once you have:
Once you have a working video application that performs these actions, there is much more you can add on to it in terms of functionality and additional tooling. Read on for more details about what Twilio Video offers.
There are many resources you can explore when starting to build your first Twilio Video applications, depending on how you like to learn. You can follow a tutorial, read documentation for SDKs and APIs, or deploy a pre-built sample video application.
Below are several tutorials that show you how to build an application from the ground up using the JavaScript SDK.
Twilio's Blog has many posts about building applications with Twilio Video. You can explore many different Twilio features and see examples using a variety of languages and frameworks. To find all Video blog posts, filter posts for the "Video" tag. You can also find translated blog posts on the Twilio Blog.
Learn more about building a video application with each client-side SDK with Getting Started guides.
Twilio's CodeExchange is a repository of code samples for common Twilio use cases.
Quickstart applications are minimal Twilio Video applications that demonstrate the basics of working with Twilio Video. Use these to get started with a small demo application that you can then deconstruct or add on to and understand core Twilio Video components.
Quick Deploy applications are more full-featured than the Quickstart applications above. They demonstrate a wide variety of Twilio Video functionality and can be used to quickly get started with a robust set of Video tools. They are open-source and you can use or alter them in any way to fit your video conferencing use case.
Try out and experiment with a basic CodeSandbox that uses the Twilio Video JavaScript SDK to display a local user's video.
Once you have started your video application, there is a lot of functionality and tooling you can add on top of it to enhance, customize, and optimize the app.
You can record Video Room content. Because all media passes through Twilio's SFU, Twilio can save that media for you to retrieve after a Room is completed.
Each Participant track is recorded and stored as a separate file. You can choose to record all tracks in a Room, or specify exactly which Participants and which tracks you want to capture. After you have recorded a Room, you can customize the layout of the final recorded video using Compositions. Twilio's Composition service takes individual track recordings, formats them visually according to your specifications, and creates an output file in mp4 or webm format.
You can choose to store Recordings and Compositions in Twilio's Cloud, or set up external AWS S3 storage.
Learn more in the Understanding Recordings and Compositions Guide.
There are many factors that influence the quality of a video call. Some of those factors are related to an end user's network and device setup. Twilio has tools to provide end user feedback about their connectivity before they join a call.
There are also tools and guides you can use to improve the video call experience for all Participants based on your call use case.
Twilio has detailed recommendations and best practices for video calls. Check out the Developing High Quality Video Applications guide for in-depth suggestions about how to enhance call quality, depending on the video use case.
The following tools are referenced in the Developing High Quality Video Applications guide:
Additionally, you can review Twilio Video account quotas and limits as well as suggestions for concurrency and API resource considerations when scaling.
Simulcast is a scalable video codec. You can use simulcast to provide the right quality of video to each Participant based on their available bandwidth. With simulcast, Twilio's Selective Forwarding Unit (SFU) forwards higher quality videos to higher bandwidth subscribers and lower quality videos to lower bandwidth ones. You can specify which tracks are the highest priority to make sure bandwidth is allocated appropriately and automatically switch off tracks if a Participant's network is too congested.
Twilio also offers adaptive simulcast, which enables and disables simulcast layers dynamically to improve bandwidth and CPU usage. This helps save device resources in cases such as presentation and grid modes, when the application does not need a Participant's highest resolution video. Adaptive simulcast ensures that publishers are only encoding the spatial layers needed at a given moment.
Learn more in Working with VP8 Adaptive Simulcast.
You can add virtual backgrounds, background blurring, or other custom video filters in JavaScript applications using the Twilio Video Processors SDK. Check out a demo of the Video Processors SDK and read ablog post about how to use the Video Processors to create virtual backgrounds.
By default in Video Rooms, Participants share their audio and video tracks. You can additionally create data tracks to share other data among Participants. You can use the DataTrack API to develop features like in-application chat or drawing. Twilio has a demo app, Draw with Twilio, that demonstrates using data tracks to create a virtual whiteboard. Check out the live demo here.
Learn more in the DataTrack API tutorial.
Learn how to capture a Participant's screen to share in a Room as a video track.
Twilio has several tools you can use to gain insight into your video applications and provide feedback to end users about their setup and connectivity. You can use these tools for debugging applications and providing feedback to users about their input devices and bandwidth before they join a video call.
Twilio Video uses WebRTC to provide real-time video and audio communication in Rooms. Review the list of ports and protocols that Twilio uses during video calls so that you can help end-users connect appropriately to your application.
Additionally, you can learn more about locations of Twilio servers and global low latency. Connecting to Twilio infrastructure that is closer to your end-users will help reduce round-trip-time and latency on video calls.
There are many ways you can integrate other Twilio services into your Video application. Below are several services you might consider adding: