Hi team,
I’m using Zoom Video SDK v2.2.5 and tried to enable live transcription with Japanese.
Here is my setup:
await liveTranscriptionTranslation.startLiveTranscription()
liveTranscriptionTranslation.setTranslationLanguage('ja')
liveTranscriptionTranslation.setSpeakingLanguage('ja')
Problem:
Even though the speaker is speaking Japanese, the transcription detects it as English and then translates subtitles into Japanese.
Expected behavior:
-
The audio input is Japanese
-
Subtitles should show the original Japanese transcription (no translation)
Question:
-
Is there any way to force live transcription to keep Japanese as-is instead of detecting English and then translating?
-
If I should not call
setTranslationLanguage
, what is the correct way to only get Japanese transcription without translation?
Thanks in advance!