chat.convertVoiceToText(options);
名称 | 类型 | 描述 |
message | Message | 音频消息 |
language | String | undefined | 语言类型,默认中英粤语音转文字。其它可选类型: zh (cmn-Hans-CN),中文通用 en-US,英语 yue-Hant-HK,粤语 ja-JP,日语 |
Promise
// 最常用的中英粤语音转文字,language 参数可缺省let promise = chat.convertVoiceToText({ message });promise.then(function(imResponse)) {// 语音转文字成功const { result } = imResponse.data;}).catch(function(imError) {// 语音转文字失败console.warn('convertVoiceToText error:', imError);});
// 日语语音转文字let promise = chat.convertVoiceToText({ message, language: 'ja-JP'});promise.then(function(imResponse)) {// 语音转文字成功const { result } = imResponse.data;}).catch(function(imError) {// 语音转文字失败console.warn('convertVoiceToText error:', imError);});
本页内容是否解决了您的问题?