——————————————————————
一个本地的 java demo 程序 想实现调用接口发送文本后播放语音。 语音生成要快(一般就行不能太慢) 功能不必很轻大(不必类似现在比较火的 chattts )
引入网上都使用这个 jar
<dependency>
<groupId>com.hynnet</groupId>
<artifactId>jacob</artifactId>
<version>1.18</version>
</dependency>
java 代码这样调用
ActiveXComponent activeXComponent = null;
try {
// jacob 封装好的可供选择的 API
activeXComponent = new ActiveXComponent("Sapi.SpVoice");
// 运行时输出语音内容
Dispatch dispatch = activeXComponent.getObject();
// 设置音量
activeXComponent.setProperty("Volume", new Variant(100));
// 语音的朗读速度-10 到 +10
activeXComponent.setProperty("Rate", new Variant(1));
// 调用执行朗读
Dispatch.call(dispatch, "Speak", new Variant(text));
查阅资料不知道怎么更换 朗读人 微软本地 我看可以更换。但是代码一直是默认的
1
COOOOOOde 120 天前
刚好昨天写了个简单 demo, 微软的 API 用 http 请求就能很方便地调用了呀, (随便写的一个, 很多参数都没有调成动态的)
```js export function azureSpeak(content) { const config = { gender: 'Female', // speaker: 'ChristopherNeural', //'Microsoft Server Speech Text to Speech Voice (zh-CN, YunxiNeural)', speaker: 'zh-CN-XiaoxiaoMultilingualNeural', content: content } return fetch("https://southeastasia.tts.speech.microsoft.com/cognitiveservices/v1", { method: "POST", headers: { "Ocp-Apim-Subscription-Key": "XXXXXX", "Content-Type": "application/ssml+xml", "X-Microsoft-OutputFormat": "audio-16khz-128kbitrate-mono-mp3", }, body: `<speak version='1.0' xml:lang='en-US'>` + `<voice xml:lang='en-US' xml:gender='${config.gender}' scenario='Podcast' name='${config.speaker}'>${config.content}` + `</voice></speak>` }) .then(response => response.blob()) .then(blob => { return window.URL.createObjectURL(blob) }) .catch(error => { console.error("Error:", error); }); } ``` |