Skip to content

Commit

Permalink
Disable transcripts by default (#1435)
Browse files Browse the repository at this point in the history
* add options.transcriptions.autoTranscribeOnRecord

* s/transcriptions/transcription/ in config options

looks good on `dev1`
  • Loading branch information
mrose17 authored May 17, 2024
1 parent 392adcd commit a3ee125
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/jitsi/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,9 @@ export const jitsiOptions = (
"whiteboard",
],
transcribingEnabled: true,
transcription: {
autoTranscribeOnRecord: false,
},
useHostPageLocalStorage: true,
videoQuality: {
persist: true,
Expand Down
3 changes: 3 additions & 0 deletions src/jitsi/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ export type JitsiOptions = {
};
toolbarButtons: string[];
transcribingEnabled: boolean;
transcription: {
autoTranscribeOnRecord: boolean;
};
useHostPageLocalStorage: boolean;
videoQuality: {
persist: boolean;
Expand Down

0 comments on commit a3ee125

Please sign in to comment.