英文测评
class IseRecorder {
constructor({ language, accent, appId } = {}) {
let self = this
this.status = 'null'
this.language = language || 'en_us'//zh_cn(!!)
。。。。。。。
// 向webSocket发送数据
//格式根据需求更改
var text =''
var category='read_word'
// 'ipt'
if(typeText=='read word'){
text =
`[word]
`+($('.start-taste-left .ipt').val() || `word`);
}else if(typeText=='read sentence'){
text =
`[content]
`+($('.start-taste-left .ipt').val() || `word`);
category='read_sentence'
}else if(typeText=='read chapter'){
text =
`[content]
`+($('.start-taste-left .ipt').val() || `word`);
category='read_chapter'
}
------------------------------------------
var params = {
common: {
app_id: this.appId,
},
business: {
category: category, // /单字朗读,汉语专有 read_word/词语朗读 read_sentence/句子朗读
rstcd: 'utf8',
// group: 'pupil',
sub: 'ise',
ent: 'en_vip',//en_vip(!!)
tte: 'utf-8',
cmd: 'ssb',
auf: 'audio/L16;rate=16000',
aus: 1,
aue: 'raw',
// text: '\uFEFF' +($('.start-taste-left .ipt').val() || `word`),//I don't know.今天天气好好呀
text: '\uFEFF' + text,//I don't know.今天天气好好呀
},