docs(devops-guide): add bridge-based transcription guide#645
Merged
Conversation
Document enabling transcriptions via the bridge-based transcription proxy (opus-transcriber-proxy): running it as a standalone container and on Cloudflare, a sample Prosody module forcing asyncTranscription for all rooms, and Jicofo configuration including Cloudflare Zero Trust auth via HTTP headers. Note that Jigasi-based transcription is deprecated.
saghul
approved these changes
Jun 16, 2026
opus-transcriber-proxy now pulls libopus in as a git submodule and no longer uses the Emscripten 'npm run configure' setup. Update the standalone-container and Cloudflare build steps to check out the submodule and use docker:build / the documented Worker flow, and note the OPUS_BACKEND runtime selection.
Lead the standalone-container instructions with the prebuilt jitsi/opus-transcriber-proxy image from Docker Hub instead of building locally. Build-from-source steps live in the opus-transcriber-proxy repo and are referenced rather than duplicated.
damencho
requested changes
Jul 8, 2026
damencho
left a comment
Member
There was a problem hiding this comment.
It misses that config.js needs changing:
transcription: {
enabled: true,
| } | ||
| ``` | ||
|
|
||
| Reload prosody (`prosodyctl reload`) afterwards. |
Member
There was a problem hiding this comment.
It needs restarting prosody as it does not load the module, otherwise.
- Change host port to 9090 to avoid conflict with JVB's default 8080 - Drop non-existent room_metadata module from Prosody config - Replace prosodyctl reload with systemctl restart prosody - Add &sendBack=true to Jicofo url-template - Add systemctl restart jicofo note after Jicofo config
damencho
approved these changes
Jul 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a devops-guide page documenting how to enable transcriptions using the bridge-based transcription proxy (opus-transcriber-proxy).
Covers:
asyncTranscription=truefor all rooms, plus how to enable it.jicofo.transcription.*config (url-template,http-headers, ping), including Cloudflare Zero Trust auth viaCF-Access-Client-Id/CF-Access-Client-Secretheaders.Also notes that Jigasi-based transcription is deprecated and will be removed in a future release.
Detailed service configuration is referenced from the project's own docs rather than duplicated.