Android_Yanbin
Android_Yanbin
  • 发布:2016-12-21 19:20
  • 更新:2024-10-30 09:01
  • 阅读:29098

文字合成语音的实现

分类:HTML5+

HBuilder版本号为7.6.3.201612161809及之后的用户请用如下Native.Js代码实现:

var receiver;  

                receiver = plus.android.implements('com.iflytek.cloud.SynthesizerListener', {  
                    onEvent: function(int eventType, int arg1, int arg2, Bundle obj) {  
                        console.log("onEvent");  
                    },  
                    onSpeakBegin: function() {  
                        console.log("开始阅读");  
                    },  
                    onSpeakPaused: function() {  
                        console.log(" 暂停播放 ");  
                    },  
                    onSpeakResumed: function() {  
                        console.log("继续播放");  
                    },  
                    onBufferProgress: function(percent, beginPos, endPos, info) {  
                        console.log("合成进度" + percent);  
                    },  
                    onSpeakProgress: function(percent, beginPos, endPos) {  
                        console.log("播放进度" + percent);  
                    },  
                    onCompleted: function(error) {  
                        console.log("播放完毕");  
                    }  
                });  

                var main = plus.android.runtimeMainActivity();  

                var SpeechUtility = plus.android.importClass('com.iflytek.cloud.SpeechUtility');  

                SpeechUtility.createUtility(main, "appid=53feacdd");  

                var SynthesizerPlayer = plus.android.importClass('com.iflytek.cloud.SpeechSynthesizer');  

                var play = SynthesizerPlayer.createSynthesizer(main, null);  
                 // 开始合成  
                play.startSpeaking('新年快乐', receiver);  
        // 取消合成  
        play.stopSpeaking();  
        // 暂停播放  
        play.pauseSpeaking();  
        // 继续播放  
        play.resumeSpeaking();

该版本之前的用户请参考下面的写法:
由于Android系统tts不支持中文,使用科大讯飞文字转语音功能,使用如此功能时,需要保证manifest.json中permissions节点含有speech节点(如"Speech": {"description": "管理语音识别插件" })。

var main = plus.android.runtimeMainActivity();  
var SynthesizerPlayer = plus.android.importClass('com.iflytek.speech.SynthesizerPlayer');  
var play = SynthesizerPlayer.createSynthesizerPlayer(main,'appid=53feacdd');  
play.playText('水果',null,null);

iOS平台参考[http://ask.dcloud.net.cn/question/4175)(http://ask.dcloud.net.cn/question/4175)

12 关注 分享
赵梦欢 1***@qq.com JBoss 4***@qq.com Trust z***@qq.com 6***@qq.com z***@gmail.com 2***@qq.com 2***@qq.com 映月辉煌 j***@126.com

要回复文章请先登录注册

JBoss

JBoss

回复 JBoss :
找到方法了,原来还比较方便。
var constant = plus.android.importClass('com.iflytek.cloud.SpeechConstant');

console.debug(constant.VOICE_NAME);
2017-01-10 23:29
JBoss

JBoss

不过,SpeechConstant中的常量该如何获取呢?能指点一下吗?
2017-01-10 23:21
JBoss

JBoss

今天一升级,居然不能用了,辛亏看到这个帖子,多谢楼主了!!!hbuilder的升级说明中完全没有说明这个变化啊。看看还不能随便升级。
2017-01-10 23:20
1***@qq.com

1***@qq.com

暂停,停止要怎么写呢
2017-01-09 14:47
蓝夜精灵

蓝夜精灵

请问 startSpeaking 第二个参数 怎么填写呢?? 或者 怎么知道 语音阅读完毕了?
2017-01-06 16:52