Java文字转语音

Java文字转语音

基于作业需求,我们要求写一个随机点名系统
并且要把随机点到的同学姓名转成语音
这个系统有两个需要考虑的方面:
一个是随机点名
一个是文字转语音
此处就是文字转语音的方面

这里我们需要下载一个工具包
点击下载jacob工具包

解压之后需要把所有的jacob开头的文件全部复制到jdk安装位置的bin目录之下

导入依赖

        <!-- https://mvnrepository.com/artifact/com.jacob/jacob 文字转语音 -->
        <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.stereotype.Controller;

/**
 * @ClassName -> JacobTest
 * @Description
 * @Author  weizhenhua
 * @Version 1.0
 * @MONTH 01
 */
@Controller
public class JacobTestController {
    /**
     * 语音转文字并播放func
     *
     * @param text
     */

    //点名系统的工具类-----网上抄的


    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(-4));
            // 执行朗读
            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(-4));
            // 开始朗读
            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();
        }
    }

}

测试


import static com.text.speaker.JacobTestController.textToSpeech;

public class Main {

    public static void main(String[] args) {
		textToSpeech("你好");
	}
}


你可能感兴趣的:(spring,maven,Java,java,语音识别,开发语言)