/*
*/
package kdxf;
import com.iflytek.cloud.speech.*;
/**
-
@author xr
*/
public class KDXF {private static SynthesizerListener mSystemLister;
private static final String APPID = "*******";/**
-
@param args the command line arguments
*/
public static void main(String[] args) {
String str = "要读的文字";
String str2 = str.replaceAll(" ", "");
SpeechUtility.createUtility("appid=" + APPID);
//1.创建SpeechSynthesizer对象
SpeechSynthesizer mTts = SpeechSynthesizer.createSynthesizer();
//2.合成参数设置,详见《MSC Reference Manual》SpeechSynthesizer 类
mTts.setParameter(SpeechConstant.VOICE_NAME, "xiaoyan"); //设置发音人
mTts.setParameter(SpeechConstant.SPEED, "50"); //设置语速 范围0~100
mTts.setParameter(SpeechConstant.VOLUME, "80"); //设置音量,范围0~100
//设置合成音频保存位置(可自定义保存位置),保存在“./tts_test.pcm”
//如果不需要保存合成音频,注释该行代码
mTts.setParameter(SpeechConstant.TTS_AUDIO_PATH, "./zye.pcm");
//3.开始合成mTts.startSpeaking(str2, new SynthesizerListener() {
//会话结束回调接口,没有错误时,error为null
public void onCompleted(SpeechError error) {
System.out.println(error);
}@Override public void onEvent(int i, int i1, int i2, int i3, Object o, Object o1) { } //缓冲进度回调 //percent为缓冲进度0~100,beginPos为缓冲音频在文本中开始位置,endPos表示缓冲音频在文本中结束位置,info为附加信息。 public void onBufferProgress(int percent, int beginPos, int endPos, String info) { System.out.println("---"+percent+"----\n"); } //开始播放 public void onSpeakBegin() { } //暂停播放 public void onSpeakPaused() { } //播放进度回调 //percent为播放进度0~100,beginPos为播放音频在文本中开始位置,endPos表示播放音频在文本中结束位置. public void onSpeakProgress(int percent, int beginPos, int endPos) { } //恢复播放回调接口 public void onSpeakResumed() { }
});
}
-
}
网友评论