解释:将文本转换为可以播放的 mp3 文件。
Web 态说明:受宿主环境限制,Web 态暂不支持 AI 能力相关接口。在 Web 态会做 打开百度 App 对应小程序页面 的降级处理。
成都创新互联主要业务有网站营销策划、成都网站设计、成都网站建设、外贸网站建设、微信公众号开发、小程序定制开发、H5高端网站建设、程序开发等业务。一次合作终身朋友,是我们奉行的宗旨;我们不仅仅把客户当客户,还把客户视为我们的合作伙伴,在开展业务的过程中,公司还积累了丰富的行业经验、营销型网站资源和合作伙伴关系资源,并逐渐建立起规范的客户服务和保障体系。
Object object
属性名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
tex | String | 是 | - | 合成的文本,使用 UTF-8 编码,小于 512 个中文字或者英文数字(文本在百度服务器内转换为 GBK 后,长度必须小于 1024 字节) |
ctp | String | 否 | 1 | 客户端类型选择, Web 端填写固定值 1 |
lan | String | 否 | zh | 固定值 zh 。语言选择,目前只有中英文混合模式,填写固定值 zh |
spd | String | 否 | 5 | 语速,取值 0-9 ,默认为 5 中语速 |
pit | String | 否 | 5 | 音调,取值 0-9 ,默认为 5 中语调 |
vol | String | 否 | 5 | 音量,取值 0-9 ,默认为 5 中音量 |
per | String | 否 | 0 | 发音人选择, 0 为普通女声, 1 为普通男生, 3 为情感合成-度逍遥, 4 为情感合成-度丫丫,默认为普通女声 |
success | Function | 否 | 接口调用成功的回调函数 | |
fail | Function | 否 | 接口调用失败的回调函数 | |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
参数 | 类型 | 说明 |
---|---|---|
filePath | String | 合成的音频文件的路径,此路径为临时路径且在当次回调中有效 |
扫码体验
代码示例
请使用百度APP扫码
在开发者工具中打开
在开发者工具中打开
在 WEB IDE 中打开
Page({
data: {
sourceIndex: 5,
sourceArray: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
sizeIndex: 5,
sizeArray: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
countIndex: 5,
countArray: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
perIndex: 1,
perArray: ['普通女声', '普通男声', '情感合成-度逍遥', '情感合成-度丫丫'],
msg: 'hello,这是一段测试语音合成的文字'
},
sourceChange(e) {
this.setData('sourceIndex', e.detail.value);
},
sizeChange(e) {
this.setData('sizeIndex', e.detail.value);
},
countChange(e) {
this.setData('countIndex', e.detail.value);
},
perChange(e) {
this.setData('perIndex', e.detail.value);
},
textToAudio() {
let tex = this.getData('msg');
let sourceIndex = this.getData('sourceIndex');
let sizeIndex = this.getData('sizeIndex');
let countIndex = this.getData('countIndex');
let perIndex = this.getData('perIndex');
// AI系列的api有宿主使用限制,只可在百度App中使用,建议使用时加一层判断防止代码报未知错误
let host = swan.getSystemInfoSync().host;
if (host === 'baiduboxapp') {
swan.ai.textToAudio({
tex,
ctp: '1',
lan: 'zn',
spd: JSON.stringify(this.data.sourceArray[sourceIndex]),
pit: JSON.stringify(this.data.sizeArray[sizeIndex]),
vol: JSON.stringify(this.data.countArray[countIndex]),
per: JSON.stringify(perIndex),
success: res => {
console.log('ai.textToAudio success', res);
swan.showToast({
title: '合成成功',
icon: 'none'
});
},
fail: err => {
console.log('ai.textToAudio fail', err);
}
});
}
else {
swan.showToast({
title: '此api目前仅可在百度App上使用',
icon: 'none'
});
}
}
});
在开发者工具中打开
在开发者工具中打开
在 WEB IDE 中打开
Page({
data: {
},
textToAudio(){
// AI系列的api有宿主使用限制,只可在百度App中使用,建议使用时加一层判断防止代码报未知错误
let host = swan.getSystemInfoSync().host;
if (host === 'baiduboxapp') {
swan.ai.textToAudio({
tex: 'hello,这是一段测试语音合成的文字',
ctp: '1',
lan: 'zh',
spd: '5',
pit: '5',
vol: '5',
per: '0',
success: res => {
console.log('ai.textToAudio success', res);
swan.showToast({
title: '合成成功',
icon: 'none'
});
},
fail: err => {
console.log('ai.textToAudio fail', err);
}
});
}
else {
swan.showToast({
title: '此api目前仅可在百度App上使用',
icon: 'none'
});
}
}
});
在开发者工具中打开
在开发者工具中打开
在 WEB IDE 中打开
Page({
data: {
},
textToAudio(){
// AI系列的api有宿主使用限制,只可在百度App中使用,建议使用时加一层判断防止代码报未知错误
let host = swan.getSystemInfoSync().host;
if (host === 'baiduboxapp') {
swan.ai.textToAudio({
tex: 'hello,这是一段测试语音合成的文字',
ctp: '1',
lan: 'zh',
spd: '5',
pit: '5',
vol: '5',
per: '1',
success: res => {
console.log('ai.textToAudio success', res);
swan.showToast({
title: '合成成功',
icon: 'none'
});
},
fail: err => {
console.log('ai.textToAudio fail', err);
}
});
}
else {
swan.showToast({
title: '此api目前仅可在百度App上使用',
icon: 'none'
});
}
}
});
在开发者工具中打开
在开发者工具中打开
在 WEB IDE 中打开
Page({
data: {
},
textToAudio(){
// AI系列的api有宿主使用限制,只可在百度App中使用,建议使用时加一层判断防止代码报未知错误
let host = swan.getSystemInfoSync().host;
if (host === 'baiduboxapp') {
swan.ai.textToAudio({
tex: 'hello,这是一段测试语音合成的文字',
ctp: '1',
lan: 'zh',
spd: '5',
pit: '5',
vol: '5',
per: '3',
success: res => {
console.log('ai.textToAudio success', res);
swan.showToast({
title: '合成成功',
icon: 'none'
});
},
fail: err => {
console.log('ai.textToAudio fail', err);
}
});
}
else {
swan.showToast({
title: '此api目前仅可在百度App上使用',
icon: 'none'
});
}
}
});
在开发者工具中打开
在开发者工具中打开
在 WEB IDE 中打开
Page({
data: {
},
textToAudio(){
// AI系列的api有宿主使用限制,只可在百度App中使用,建议使用时加一层判断防止代码报未知错误
let host = swan.getSystemInfoSync().host;
if (host === 'baiduboxapp') {
swan.ai.textToAudio({
tex: 'hello,这是一段测试语音合成的文字',
ctp: '1',
lan: 'zh',
spd: '5',
pit: '5',
vol: '5',
per: '4',
success: res => {
console.log('ai.textToAudio success', res);
swan.showToast({
title: '合成成功',
icon: 'none'
});
},
fail: err => {
console.log('ai.textToAudio fail', err);
}
});
}
else {
swan.showToast({
title: '此api目前仅可在百度App上使用',
icon: 'none'
});
}
}
});
重置 App Secret 会导致此功能无法使用。
文章标题:创新互联百度小程序教程:swan.ai.textToAudio
转载注明:http://www.mswzjz.cn/qtweb/news24/123774.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能