---
title: Realtime Changelog
image: https://edgetunnel-b2h.pages.dev/cf-twitter-card.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://edgetunnel-b2h.pages.dev/changelog/llms.txt  
> Use this file to discover all available pages before exploring further. 

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://edgetunnel-b2h.pages.dev/changelog/rss/index.xml) [ View RSS feeds ](https://edgetunnel-b2h.pages.dev/fundamentals/new-features/available-rss-feeds/) 

Realtime

![hero image](https://edgetunnel-b2h.pages.dev/_astro/hero.CVYJHPAd_26AMqX.svg) 

Jun 08, 2026
1. ### [Post-meeting transcriptions are now Generally Available in RealtimeKit](https://edgetunnel-b2h.pages.dev/changelog/post/2026-06-08-realtimekit-post-meeting-transcription-ga/)  
[ Realtime ](https://edgetunnel-b2h.pages.dev/realtime/)  
[RealtimeKit](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/) lets you build products where people meet over live audio and video — such as HealthTech, EdTech, proctoring, and other real-time platforms — on Cloudflare's [global WebRTC infrastructure](https://edgetunnel-b2h.pages.dev/realtime/sfu/calls-vs-sfus/).  
[Post-meeting transcription](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/ai/transcription/#post-meeting-transcription) is now Generally Available, so completed RealtimeKit meetings can automatically produce full transcript files after they end. Those transcripts can also power [AI-generated summaries](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/ai/summary/) for meeting notes, review workflows, and follow-up tasks after the transcript is available.  
Post-meeting transcription is a managed service powered by [Workers AI](https://edgetunnel-b2h.pages.dev/workers-ai/) using [Whisper Large v3 Turbo](https://edgetunnel-b2h.pages.dev/workers-ai/models/whisper-large-v3-turbo/). RealtimeKit handles transcription processing and can return transcript and summary files through [webhooks](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/webhooks/) or the REST API, so you do not need to run your own transcription infrastructure.  
#### Generate transcripts and summaries  
To generate a transcript after a meeting ends, set `transcribe_on_end: true` when [creating a meeting](https://edgetunnel-b2h.pages.dev/api/resources/realtime%5Fkit/subresources/meetings/methods/create/). To also generate an AI summary automatically after the transcript is available, set `summarize_on_end: true`:  
```bash  
curl -X POST "https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/realtime/kit/$APP_ID/meetings" \
  -H "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{  
    "title": "Weekly product review",  
    "transcribe_on_end": true,  
    "summarize_on_end": true,  
    "ai_config": {  
      "transcription": {  
        "language": "en"  
      },  
      "summarization": {  
        "word_limit": 500,  
        "text_format": "markdown",  
        "summary_type": "team_meeting"  
      }  
    }  
  }'  
```  
#### Consume results  
When RealtimeKit finishes processing a meeting, it creates download URLs for the transcript and, if `summarize_on_end` is set, the summary. You can receive those URLs automatically with [webhooks](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/webhooks/), or fetch them later for a specific session with the [REST API](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/ai/summary/#rest-api).  
To receive results as soon as they are ready, configure the `meeting.transcript` and `meeting.summary` webhook events:  
```bash  
curl -X POST "https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/realtime/kit/$APP_ID/webhooks" \
  -H "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{  
    "name": "AI results webhook",  
    "url": "https://example.com/webhook",  
    "events": ["meeting.transcript", "meeting.summary"],  
    "enabled": true  
  }'  
```  
To fetch results later, call the [transcript](https://edgetunnel-b2h.pages.dev/api/resources/realtime%5Fkit/subresources/sessions/methods/get%5Fsession%5Ftranscripts/) or [summary](https://edgetunnel-b2h.pages.dev/api/resources/realtime%5Fkit/subresources/sessions/methods/get%5Fsession%5Fsummary/) endpoint for the session:  
```bash  
curl -X GET "https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/realtime/kit/$APP_ID/sessions/$SESSION_ID/transcript" \
  -H "Authorization: Bearer $CLOUDFLARE_API_TOKEN"  
curl -X GET "https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/realtime/kit/$APP_ID/sessions/$SESSION_ID/summary" \
  -H "Authorization: Bearer $CLOUDFLARE_API_TOKEN"  
```  
Use the [Generate summary of transcripts for the session](https://edgetunnel-b2h.pages.dev/api/resources/realtime%5Fkit/subresources/sessions/methods/generate%5Fsummary%5Fof%5Ftranscripts/) API only if `summarize_on_end` was not set and you want to generate a summary manually after the transcript is available:  
```bash  
curl -X POST "https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/realtime/kit/$APP_ID/sessions/$SESSION_ID/summary" \
  -H "Authorization: Bearer $CLOUDFLARE_API_TOKEN"  
```  
Post-meeting transcription supports [CSV, JSON, SRT, and VTT transcript outputs](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/ai/transcription/#output-formats), [automatic language detection and Whisper language codes](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/ai/transcription/#post-meeting-supported-languages). RealtimeKit also supports [real-time transcription](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/ai/transcription/#real-time-transcription) with [Deepgram Nova-3](https://edgetunnel-b2h.pages.dev/workers-ai/models/nova-3/) for live captions, in-meeting accessibility, and real-time note-taking.  
Learn more in the [RealtimeKit transcription docs](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/ai/transcription/) and [summary docs](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/ai/summary/).

May 29, 2026
1. ### [Cloudflare's Realtime WebSocket adapter now auto-reconnects and buffers WebRTC media](https://edgetunnel-b2h.pages.dev/changelog/post/2026-05-29-websocket-adapter-auto-reconnect/)  
[ Realtime ](https://edgetunnel-b2h.pages.dev/realtime/)  
[Cloudflare Realtime SFU](https://edgetunnel-b2h.pages.dev/realtime/sfu/) is a [WebRTC Selective Forwarding Unit that runs on Cloudflare's global network](https://edgetunnel-b2h.pages.dev/realtime/sfu/calls-vs-sfus/), so you can route live audio, video, and data between WebRTC clients around the world without managing SFU infrastructure or regions.  
When you use the [WebSocket adapter](https://edgetunnel-b2h.pages.dev/realtime/sfu/media-transport-adapters/websocket-adapter/) to stream WebRTC media to a WebSocket endpoint, the adapter now auto-reconnects and buffers audio and video after brief endpoint disconnects or restarts.  
#### Streaming WebRTC media to WebSocket endpoints  
Many teams also use Realtime SFU as the media layer for backend applications, such as transcription, recording, note-taking, and agentic media-processing services. These systems often need to consume live WebRTC audio or video from the SFU in backend infrastructure, including [Durable Objects](https://edgetunnel-b2h.pages.dev/durable-objects/), [Workers](https://edgetunnel-b2h.pages.dev/workers/), [Containers](https://edgetunnel-b2h.pages.dev/containers/), or external services, without running a WebRTC client themselves.  
The [WebSocket adapter](https://edgetunnel-b2h.pages.dev/realtime/sfu/media-transport-adapters/websocket-adapter/) bridges that gap by streaming WebRTC media from the SFU to a standard WebSocket endpoint as application-consumable payloads: [PCM audio frames and JPEG video frames](https://edgetunnel-b2h.pages.dev/realtime/sfu/media-transport-adapters/websocket-adapter/#media-formats).  
#### What changed  
When you use the WebSocket adapter in [Stream mode (egress)](https://edgetunnel-b2h.pages.dev/realtime/sfu/media-transport-adapters/websocket-adapter/#stream-mode-egress) to send live audio or video from the SFU to your own WebSocket endpoint, the SFU now [automatically reconnects](https://edgetunnel-b2h.pages.dev/realtime/sfu/media-transport-adapters/websocket-adapter/#automatic-reconnection-for-streaming) after brief endpoint disconnects or restarts. This is especially helpful for long-running media pipelines where the WebSocket endpoint may briefly restart while a recording, transcription, or live analysis job is still in progress.  
Previously, a brief disconnect from your WebSocket endpoint could close the adapter and require your application to recreate it before media could resume. Now, the SFU retries the same endpoint for up to 5 seconds with no API change required. If the endpoint comes back within that window, audio and video delivery resumes automatically.  
The reconnect behavior also includes [live-first media buffering](https://edgetunnel-b2h.pages.dev/realtime/sfu/media-transport-adapters/websocket-adapter/#media-buffering-during-reconnect), so brief interruptions reduce media loss without replaying stale video.  
#### Reconnect behavior  
During reconnect:

  * Audio uses a short bounded backlog to reduce audible loss. If the interruption lasts longer than the backlog can cover, older audio may be dropped.
  * Video resumes from the [latest available JPEG frame](https://edgetunnel-b2h.pages.dev/realtime/sfu/media-transport-adapters/websocket-adapter/#video-jpeg) instead of replaying stale frames.
  * Recovery is best effort and does not guarantee gapless or exactly-once delivery.  
If the endpoint remains unavailable after the 5-second reconnect window, the adapter closes and must be recreated.  
#### Learn more

  * [WebSocket adapter](https://edgetunnel-b2h.pages.dev/realtime/sfu/media-transport-adapters/websocket-adapter/)
  * [Automatic reconnection for streaming](https://edgetunnel-b2h.pages.dev/realtime/sfu/media-transport-adapters/websocket-adapter/#automatic-reconnection-for-streaming)
  * [Get started with Realtime SFU](https://edgetunnel-b2h.pages.dev/realtime/sfu/get-started/)
  * [Realtime SFU example architecture](https://edgetunnel-b2h.pages.dev/realtime/sfu/example-architecture/)
  * [Realtime vs Regular SFUs](https://edgetunnel-b2h.pages.dev/realtime/sfu/calls-vs-sfus/)
  * [Global SFU Network Visualization ↗](https://realtime-sfu.dev-demos.workers.dev/)

May 28, 2026
1. ### [Record specific participant audio tracks in RealtimeKit](https://edgetunnel-b2h.pages.dev/changelog/post/2026-05-28-realtimekit-track-recording/)  
[ Realtime ](https://edgetunnel-b2h.pages.dev/realtime/)  
You can now record specific participant audio tracks in RealtimeKit with [track recording](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/recording-guide/track-recording/). Track recording creates separate WebM files for each participant instead of a single composite recording, which is useful for post-processing, transcription, and regulated or content-sensitive workflows.  
To record specific participants, pass `user_ids` when starting a track recording:  
```bash  
curl --request POST \
  --url https://api.cloudflare.com/client/v4/accounts/<account_id>/realtime/kit/<app_id>/recordings/track \
  --header 'Authorization: Bearer <api_token>' \
  --header 'Content-Type: application/json' \
  --data '{  
  "meeting_id": "97440c6a-140b-40a9-9499-b23fd7a3868a",  
  "user_ids": ["user-123", "user-456"]  
}'  
```  
To pass `user_ids` for selective track recording, use the following minimum SDK versions:

  * Web Core: `@cloudflare/realtimekit` version `1.4.0` or later
  * Web UI Kit: `@cloudflare/realtimekit-ui`, `@cloudflare/realtimekit-react-ui`, or `@cloudflare/realtimekit-angular-ui` version `1.1.2` or later
  * Android Core or iOS Core: version `2.0.0` or later
  * Android UI Kit or iOS UI Kit: version `1.1.0` or later  
[RealtimeKit](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/) provides SDKs and UI components so that you can build your own meeting experience on Cloudflare's [global WebRTC infrastructure](https://edgetunnel-b2h.pages.dev/realtime/#realtime-sfu). Teams today build products ranging from telehealth to education on RealtimeKit for global audiences. You can get started today with our [Quickstart](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/quickstart/) or take a look at our [Cloudflare Meet repo ↗](https://github.com/cloudflare/meet) as a reference.

Mar 06, 2026
1. ### [Real-time transcription in RealtimeKit now supports 10 languages with regional variants](https://edgetunnel-b2h.pages.dev/changelog/post/2026-03-06-realtimekit-multilingual-transcription/)  
[ Workers AI ](https://edgetunnel-b2h.pages.dev/workers-ai/)[ Realtime ](https://edgetunnel-b2h.pages.dev/realtime/)  
[Real-time transcription](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/ai/transcription/) in RealtimeKit now supports 10 languages with regional variants, powered by [Deepgram Nova-3](https://edgetunnel-b2h.pages.dev/workers-ai/models/nova-3/) running on [Workers AI](https://edgetunnel-b2h.pages.dev/workers-ai/).  
During a meeting, participant audio is routed through [AI Gateway](https://edgetunnel-b2h.pages.dev/ai-gateway/) to Nova-3 on Workers AI — so transcription runs on Cloudflare's network end-to-end, reducing latency compared to routing through external speech-to-text services.  
Set the language when [creating a meeting](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/concepts/meeting/) via `ai_config.transcription.language`:  
```json  
{  
  "ai_config": {  
    "transcription": {  
      "language": "fr"  
    }  
  }  
}  
```  
Supported languages include English, Spanish, French, German, Hindi, Russian, Portuguese, Japanese, Italian, and Dutch — with regional variants like `en-AU`, `en-GB`, `en-IN`, `en-NZ`, `es-419`, `fr-CA`, `de-CH`, `pt-BR`, and `pt-PT`. Use `multi` for automatic multilingual detection.  
If you are building voice agents or real-time translation workflows, your agent can now transcribe in the caller's language natively — no extra services or routing logic needed.

  * [Transcription docs](https://edgetunnel-b2h.pages.dev/realtime/realtimekit/ai/transcription/)
  * [Nova-3 model page](https://edgetunnel-b2h.pages.dev/workers-ai/models/nova-3/)
  * [Workers AI](https://edgetunnel-b2h.pages.dev/workers-ai/)
  * [AI Gateway](https://edgetunnel-b2h.pages.dev/ai-gateway/)

```json
{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://edgetunnel-b2h.pages.dev/changelog/product/realtime/#page","headline":"Realtime Changelog | Cloudflare Docs","url":"https://edgetunnel-b2h.pages.dev/changelog/product/realtime/","inLanguage":"en","image":"https://edgetunnel-b2h.pages.dev/cf-twitter-card.png","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://edgetunnel-b2h.pages.dev/#website","name":"Cloudflare Docs","url":"https://edgetunnel-b2h.pages.dev/"}}
```
