java实现文字转语音播报功能
程序员文章站
2022-12-05 16:04:25
一、pom.xml引入jar包依赖 二、把jacob-1.18-x64.dll文件复制到jdk安装位置的bin目录下。 三、把jacobtest.java类导入至项目中测试运行。 ......
一、pom.xml引入jar包依赖
<!-- https://mvnrepository.com/artifact/com.jacob/jacob 文字转语音 --> <dependency> <groupid>com.hynnet</groupid> <artifactid>jacob</artifactid> <version>1.18</version> </dependency>
二、把jacob-1.18-x64.dll文件复制到jdk安装位置的bin目录下。
https://files.cnblogs.com/files/w1441639547/jacob-1.18-x64.rar
三、把jacobtest.java类导入至项目中测试运行。
package com.interface.util; import com.jacob.activex.activexcomponent; import com.jacob.com.dispatch; import com.jacob.com.variant; /** * 文字转语音测试 jdk bin文件中需要导入jacob-1.17-m2-x64.dll * * @author zk * @date: 2019年6月25日 上午10:05:21 */ public class jacobtest { /** * 语音转文字并播放 * * @param txt */ public static void texttospeech(string txt) { activexcomponent ax = null; try { ax = new activexcomponent("sapi.spvoice"); // 运行时输出语音内容 dispatch spvoice = ax.getobject(); // 音量 0-100 ax.setproperty("volume", new variant(100)); // 语音朗读速度 -10 到 +10 ax.setproperty("rate", new variant(-2)); // 执行朗读 dispatch.call(spvoice, "speak", new variant(txt)); // 下面是构建文件流把生成语音文件 ax = new activexcomponent("sapi.spfilestream"); dispatch spfilestream = ax.getobject(); ax = new activexcomponent("sapi.spaudioformat"); dispatch spaudioformat = ax.getobject(); // 设置音频流格式 dispatch.put(spaudioformat, "type", new variant(22)); // 设置文件输出流格式 dispatch.putref(spfilestream, "format", spaudioformat); // 调用输出 文件流打开方法,创建一个.wav文件 dispatch.call(spfilestream, "open", new variant("./txt.wav"), new variant(3), new variant(true)); // 设置声音对象的音频输出流为输出文件对象 dispatch.putref(spvoice, "audiooutputstream", spfilestream); // 设置音量 0到100 dispatch.put(spvoice, "volume", new variant(100)); // 设置朗读速度 dispatch.put(spvoice, "rate", new variant(-2)); // 开始朗读 dispatch.call(spvoice, "speak", new variant(txt)); // 关闭输出文件 dispatch.call(spfilestream, "close"); dispatch.putref(spvoice, "audiooutputstream", null); spaudioformat.saferelease(); spfilestream.saferelease(); spvoice.saferelease(); ax.saferelease(); } catch (exception e) { e.printstacktrace(); } } }