js/java文字转语音免费(仅仅支持window)支持离线使用

直接上html页面就能用

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
    <script type="text/javascript">
	
		function voice(){


        // 语音播报
        var utterThis = new window.SpeechSynthesisUtterance()
			utterThis.text = "支付宝到账100元";  //播放内容按
            window.speechSynthesis.speak(utterThis)



		}

    </script>
</head>
<body>
测试页面

<button id='test' onclick='voice()' >测试</button>
</body>
</html>

如果不想用页面,用java后台也能

下载 jacob (类似于JNA 可以作为桥梁调用dll动态链接库 从而驱动某些程序,这里是驱动window的音放)

https://sourceforge.net/projects/jacob-project/files/latest/download

解压压缩包后,将dll放入 JAVA_HOME\bin 下,如果打成jar包后不能用的话,也可以再放在JAVA_HOME\jre\bin 和window/system32下

项目中引入pom依赖

    <!-- https://mvnrepository.com/artifact/com.jacob/jacob 文字转语音   用1.19版本也行 -->
    <dependency>
        <groupId>com.hynnet</groupId>
        <artifactId>jacob</artifactId>
        <version>1.18</version>
    </dependency>

创建类

import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.Dispatch;
import com.jacob.com.Variant;
import org.springframework.web.bind.annotation.RestController;

/**
 * 文字转语音测试 jdk
 */
@RestController
public class VoiceDemo {


    public static void main(String[] args) {
        textToSpeech("支付宝到账100.00元");
        //textToSpeech("拿错文件,赶紧放回,不然揍你");
    }

    public static void textToSpeech(String text) {
        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(0));
            // 执行朗读
            Dispatch.call(spVoice, "Speak", new Variant(text));

            // 下面是构建文件流把生成语音文件

            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("./text.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(text));

            // 关闭输出文件
            Dispatch.call(spFileStream, "Close");
            Dispatch.putRef(spVoice, "AudioOutputStream", null);

            spAudioFormat.safeRelease();
            spFileStream.safeRelease();
            spVoice.safeRelease();
            ax.safeRelease();

        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

直接运行就可以

### Windows Vue 离线文字语音实现方法 对于在Windows系统上使用Vue实现离线文字语音功能,可以考虑利用Electron框架来构建桌面应用。通过Electron,可以在本地环境中运行Vue项目并集成必要的TTS(Text-to-Speech)库。 由于浏览器环境下的Web Speech API依赖于网络连接以访问云端服务,在离线状态下可能无法正常工作[^2]。因此建议采用支持多平台且可嵌入到Node.js应用程序中的开源TTS引擎如`espeak-ng`或`festival`等作为解决方案的一部分。 具体来说: #### 安装与配置Electron-Vue模板 首先创建基于Electron-Vue的项目结构,这可以通过官方提供的脚手架工具完成初始化操作。 ```bash vue init simulatedgreg/electron-vue my-project cd my-project npm install ``` #### 集成TTS引擎至项目中 安装所需的NPM包以便能够在JavaScript代码里调用命令行接口启动选定的声音合成器。 ```javascript // main.js const { app, BrowserWindow } = require('electron') require('@electron/remote/main').initialize() let win; function createWindow () { win = new BrowserWindow({ width: 800, height: 600, webPreferences: { nodeIntegration: true, enableRemoteModule: true // Required for @electron/remote. } }) win.loadURL(process.env.WEBPACK_DEV_SERVER_URL) if (!process.env.IS_TEST) win.webContents.openDevTools() win.on('closed', () => { win = null }) } app.on('ready', async() => { await import('./tts') // 假设我们将 TTS 功能封装在此模块内 createWindow() }) ``` 编写简单的TTS处理逻辑: ```javascript // tts/index.js const spawn = require('child_process').spawn; module.exports = function setupTTS(){ const espeak = spawn('espeak'); // 或者其他您选择的 TTS 工具 window.speakText = (text)=>{ let args=['-v','zh']; if(text){ args.push(text); } espeak.send(args.join(' ')); }; } ``` 最后,在前端页面上调用此函数即可触发声音播放效果: ```html <!-- src/App.vue --> <template> <div id="app"> <input v-model="message"/> <button @click="speak">Speak</button> </div> </template> <script> export default{ data(){ return{ message:''}; }, methods:{ speak(){ window.require('electron').ipcRenderer.sendSync('invoke-tts',this.message); }} </script> ``` 需要注意的是上述例子仅提供了一个基本思路框架,实际开发过程中还需要解决诸如跨进程通信优化、错误处理机制等问题,并确保所选TTS软件已正确安装于目标机器之上。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值