首页
学习
活动
专区
工具
TVP
发布
首页标签智聆口语评测

#智聆口语评测

口语能力评测服务

智聆口语评测的sessionid是干什么用的?

SessionId是唯一标识符,可以用于查询,可以使用uuid(通用唯一识别码)当做他的值

智聆口语评测报错:文本太长?

智聆口语评测返回结果里面的*是什么意思,会影响分数吗?

一般返回的match_tag为1的时候,表示多读了识别不了的成*号 ,match_tag为2代表漏读,
match_tag为3代 表错读,match_tag为4表示词库没有这个单词,
可以收集起来让后台录入或者自定义音素上传评测
有多读的不会影响分数

智聆口语评测SentenceInfo为空?

SentenceInfo为中间结果,只有使用段落模式的时候才会有中间结果

智聆口语评测使用段落模式的时候phone没有返回音标?

段落模式是不会返回单词的phone的,只有单词模式和句子模式有

智聆口语评测报base64解码错误?

智聆口语评测使用官方文档的签名方法v3,但是获取签名的时候会报错?

参考:https://cloud.tencent.com/document/product/884/30657,根据里面的demo,修改成对应的参数 参数可以看https://cloud.tencent.com/document/product/884/32605 需要修改host,action,params等信息 ... 展开详请

智聆口语评测音素结构的文本格式是怎么样的?

使用音素结构需要将TextMode改为1,参考https://cloud.tencent.com/document/product/884/33698, word为音标或者单词,pron为国际音标对应的智聆音素. 输出的是字符串不是字典 另外无法从智聆音素推断出他的国际音标,因为一般单词的国际音标都是固定的. ... 展开详请

使用智聆口语评测报错:服务未开通或已欠费?

1,查看控制台里面是否已经开通了服务,中英文是互不影响的(https://console.cloud.tencent.com/soe) 2,查看servertype字段是否对应,默认为0(英文),如果只开通了中文,但是没有设置这个字段就会报错. 3,没有在控制台里面设置soeappid,参数里面填入了不存在的值. ... 展开详请

智聆口语评测使用自定义存储功能,但是返回的存储url获取不到结果?

如果是必现:那么应该是没有配置好,需要将100000416883在cos桶里的权限管理加到用户权限中(根账号,完全控制)。然后自己在控制台设置就好了
如果是偶现:高峰期可能会存在延迟,建议客户自己上传存储,因为存储的量较大,所以可能会有极个别失败.

智聆口语评测每种模式对应的单词数及时长限制?

1.单词模式:<= 60秒,单个单词     2. 单词音素诊断模式:<=60秒,单个单词     3. 句子模式: <= 60秒,<= 30个单词     4.多分支句子模式: <= 60秒,<= 30个单词     5.段落模式: <= 120秒, <= 120个单词     6.自由说模式: <= 120秒,词数不限     7.情景对话模式: <= 120秒,词数不限   8.单词实时评测:音频时长不限,单个单词     9.单词的占位符的问题:一个阿拉伯数字会占用一个单词位,1000就会占用4个单词。单词模式中1也占用一个 单词位 ... 展开详请

智聆口语评测返回结果里面的评分为0?

1,音频文件要符合16khz采样率16bit位深单声道,如果是mp3文件码率要高于48kbps,否则评分可能会出现偏低或者0 2,VoiceType是否和传入的音频文件一致,文本和音频是否一致. 3,看下sessionId是否在每次评测的时候都是一样的结果导致的   4,在初次评测的时候IsQuery为1.会导致分数为0.因为没有评测,所以查不到结果. 5,在句子模式下,如果用户只评测一个单词的情况下完整度会为0,会导致总评分为0,让用户选择合适的场景(单词模式) 6,部分词不在字典里面,需要使用音素结构来指定发音进行评测. 7,使用小程序插件的时候需要使用真机调试. ... 展开详请

微信小程序使用智聆口语评测插件报错,评估之前没有初始化或已过期?

QQ截图20200911175625.png 我的核心代码如下: let plugin = requirePlugin("myPlugin"); let manager = plugin.getSoeRecorderManager({ secretId: "my secretId", secretKey: "my secretKey" }); Page({ data: { score: null, voicePath: null, manager: null, PronAccuracy: null, PronFluency: null, PronCompletion: null, resps: [], soeAppId: '', content: 'hello', serverType: 0, storageMode: 0, evalMode: 0, scoreCoeff: 1.5, textMode: 0, duration: 8000, error: '' }, onLoad: function () { manager.onSuccess((res) => { this.setData({ PronAccuracy: res.PronAccuracy, PronFluency: res.PronFluency, PronCompletion: res.PronCompletion }) console.log('onSuccess') }); manager.onStop(() => { console.log('onStop') }) manager.onStart(() => { console.log('onStart') }) manager.onResponse((res) => { console.log('onResponse', res) let array = this.data.resps array.push(JSON.stringify(res)) this.setData({ resps: array }) }) manager.onError((res) => { console.log('onError', res) this.setData({ error: JSON.stringify(res) }) }) }, startVoice () { console.log('manager:', manager) manager.start({ content: this.data.content, evalMode: this.data.evalMode, scoreCoeff: this.data.scoreCoeff, serverType: this.data.serverType, storageMode: this.data.storageMode, soeAppId: this.data.soeAppId, textMode: this.data.textMode, duration: this.data.duration }) this.setData({ PronAccuracy: '', PronFluency: '', PronCompletion: '', error: '' }) }, stopVoice () { //停止评测 console.log('manager:', manager) manager.stop() } })... 展开详请
QQ截图20200911175625.png 我的核心代码如下: let plugin = requirePlugin("myPlugin"); let manager = plugin.getSoeRecorderManager({ secretId: "my secretId", secretKey: "my secretKey" }); Page({ data: { score: null, voicePath: null, manager: null, PronAccuracy: null, PronFluency: null, PronCompletion: null, resps: [], soeAppId: '', content: 'hello', serverType: 0, storageMode: 0, evalMode: 0, scoreCoeff: 1.5, textMode: 0, duration: 8000, error: '' }, onLoad: function () { manager.onSuccess((res) => { this.setData({ PronAccuracy: res.PronAccuracy, PronFluency: res.PronFluency, PronCompletion: res.PronCompletion }) console.log('onSuccess') }); manager.onStop(() => { console.log('onStop') }) manager.onStart(() => { console.log('onStart') }) manager.onResponse((res) => { console.log('onResponse', res) let array = this.data.resps array.push(JSON.stringify(res)) this.setData({ resps: array }) }) manager.onError((res) => { console.log('onError', res) this.setData({ error: JSON.stringify(res) }) }) }, startVoice () { console.log('manager:', manager) manager.start({ content: this.data.content, evalMode: this.data.evalMode, scoreCoeff: this.data.scoreCoeff, serverType: this.data.serverType, storageMode: this.data.storageMode, soeAppId: this.data.soeAppId, textMode: this.data.textMode, duration: this.data.duration }) this.setData({ PronAccuracy: '', PronFluency: '', PronCompletion: '', error: '' }) }, stopVoice () { //停止评测 console.log('manager:', manager) manager.stop() } })

口语评测提供标准发音音频吗?

智聆口语评测支持临时授权,访问智聆口语吗?

集成智聆口语评测,外部录制不走回调TAIOralEvaluationCallback?

调用智聆口语评测小程序插件 手机端报错?

智聆口语评测结果,中文版的评分计算具体是如何工作?

每天0点过后会签名失败,第二天7点后签名又会成功?

智聆 Web Sdk 流式分片会丢失最后的一小段音频?

领券