Skip to content

2.32.0

Compare
Choose a tag to compare
@luisrivas luisrivas released this 23 Jul 18:16
· 31 commits to master since this release

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.