Released: 2026-05-19 Updated: 2026-05-21
Summary: Add Android PSTN callout status visibility and support for voice translator.
Added
-
Add Android PSTN callout status visibility.
-
New parameter in
ZoomVideoSDKInvitePhoneUserInfo.public boolean bDetectMachine; -
New enum in
ZoomVideoSDKPhoneStatus.PhoneStatus_AnsweredByMachine
-
-
Add support for voice translator.
-
New class
ZoomVideoSDKVoiceInterpretationHelper.java.public interface ZoomVideoSDKVoiceInterpretationHelper { interface IVoiceInterpretationLanguage { String getLanguageName(); int getLanguageID(); } interface IVoiceInterpretationVoiceInfo { String getVoiceTypeName(); int getVoiceTypeID(); String getVoiceSampleFileUrl(); } boolean isVoiceInterpretationEnabled(); boolean isVoiceInterpretationReady(); int startVoiceInterpretation(); int stopVoiceInterpretation(); boolean isVoiceInterpretationStarted(); IVoiceInterpretationLanguage getMySpeakingLanguage(); List<IVoiceInterpretationLanguage> getMySpeakingLanguageList(); int setMySpeakingLanguage(IVoiceInterpretationLanguage language); IVoiceInterpretationLanguage getTranslatedLanguage(); List<IVoiceInterpretationLanguage> getTranslatedLanguagesList(); int setTranslatedLanguage(IVoiceInterpretationLanguage language); float getAudioBalanceForOriginalAndTranslatedVoice(); int setAudioBalanceForOriginalAndTranslatedVoice(float balance); IVoiceInterpretationVoiceInfo getTranslatedVoiceStyle(); List<IVoiceInterpretationVoiceInfo> getTranslatedVoiceStyleList(); int setTranslatedVoiceStyle(IVoiceInterpretationVoiceInfo voiceInfo); -
New callback in
ZoomVideoSDKDelegate.void onVoiceInterpretationReady();
-