github twilio/twilio-video.js 2.32.0

latest releases: 2.32.1, 2.32.1-rc.2, 2.32.1-rc.1...
one month ago

2.32.0 (July 23, 2025)

New Features

Real-Time Transcriptions Support

Added real-time transcription capabilities for group rooms, allowing the capture and display of real-time captions during video calls.

Usage

To receive transcriptions, set the receiveTranscriptions option to true when connecting to a room. Then, subscribe to the transcription event to receive real-time transcription data:

import { connect } from 'twilio-video';

const room = await connect(token, {
  name: 'my-room',
  receiveTranscriptions: true
});

room.on('transcription', (transcriptionEvent) => {
  console.log(`${transcriptionEvent.participant}: ${transcriptionEvent.transcription}`);
});

See the Transcription's documentation for more details.

Don't miss a new twilio-video.js release

NewReleases is sending notifications on new releases.