diff --git a/openvidu-testapp/src/app/components/video/video.component.ts b/openvidu-testapp/src/app/components/video/video.component.ts index dce634aa..93ba9c10 100644 --- a/openvidu-testapp/src/app/components/video/video.component.ts +++ b/openvidu-testapp/src/app/components/video/video.component.ts @@ -339,7 +339,7 @@ export class VideoComponent implements OnInit, OnDestroy { async speechToText() { if (this.captionIcon === 'closed_caption') { - await this.streamManager.stream.session.subscribeToSpeechToText(this.streamManager.stream, 'es'); + await this.streamManager.stream.session.subscribeToSpeechToText(this.streamManager.stream, 'en-US'); } else { await this.streamManager.stream.session.unsubscribeFromSpeechToText(this.streamManager.stream); }