首页 > 其他分享 >启动opencv报错、jacob报错

启动opencv报错、jacob报错

时间:2024-12-23 21:09:47浏览次数:6  
标签:String Variant Dispatch opencv spVoice 报错 ax jacob new

1、明明都添加了对应的maven文件,项目不报红,但运行起来就是报错

package com.xiangwen.controller;


import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.Dispatch;
import com.jacob.com.Variant;

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.Objects;
import java.util.UUID;

/**
 * 离线 本地 TXT文件 语音朗读,生成mp3文件
 */
public class VoiceUtil {
    public static void main(String[] args) {
        //本地TXT文件位置
        String text = textToStr("F:\\test\\1.txt");
        textToSpeechIO(text,1);
    }

    /**
     * 字符串文本转 wav格式 语音文件
     *
     * @param text 要读的文字字符串
     */
    public static String textToSpeechIO(String text,int speed) {
        String path = "D:\\test\\";

        ActiveXComponent ax = null;
        Dispatch spFileStream = null;
        Dispatch spAudioFormat = null;
        Dispatch spVoice = null;
        try {
            ax = new ActiveXComponent("Sapi.SpFileStream");
            spFileStream = ax.getObject();

            ax = new ActiveXComponent("Sapi.SpAudioFormat");
            spAudioFormat = ax.getObject();

            spVoice = new ActiveXComponent("Sapi.SpVoice").getObject();
            // 设置音频流格式
            Dispatch.put(spAudioFormat, "Type", new Variant(22));
            // 设置文件输出流格式
            Dispatch.putRef(spFileStream, "Format", spAudioFormat);
            //随机uuid
            String uuid = UUID.randomUUID().toString().trim().replaceAll("-", "");
//                String filePath = path + uuid + ".wav";
            String filePathOut = path + uuid + ".mp3";

            // 调用输出 文件流打开方法,创建一个.wav文件
//                Dispatch.call(spFileStream, "Open", new Variant("D:\\workspace3\\test/test.mp3"), new Variant(3), new Variant(true));
            Dispatch.call(spFileStream, "Open", new Variant(filePathOut), new Variant(3), new Variant(true));
            // 设置声音对象的音频输出流为输出文件对象
            Dispatch.putRef(spVoice, "AudioOutputStream", spFileStream);
            // 设置音量  0 ~ 100
            Dispatch.put(spVoice, "Volume", new Variant(100));
            // 设置朗读速度  -10 ~ +10
            Dispatch.put(spVoice, "Rate", new Variant(speed));

            Dispatch.call(spVoice, "Speak", new Variant(text));

            System.out.println("输出语音文件成功!");
            return filePathOut;
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            // 关闭输出文件
            Dispatch.call(Objects.requireNonNull(spFileStream), "Close");
            Dispatch.putRef(Objects.requireNonNull(spVoice), "AudioOutputStream", null);

            Objects.requireNonNull(spAudioFormat).safeRelease();
            spFileStream.safeRelease();
            spVoice.safeRelease();
            ax.safeRelease();
        }
        return null;
    }

    /**
     * txt文件转字符串
     *
     * @param fileName txt文件所在位置
     * @return txt文件中的字符串
     */
    public static String textToStr(String fileName) {
        BufferedReader reader = null;
        try {
            reader = new BufferedReader(new FileReader(fileName));
            StringBuilder sb = new StringBuilder();
            String line;
            while ((line = reader.readLine()) != null) {
                sb.append(line);
            }
            return sb.toString();
        } catch (IOException e) {
            e.printStackTrace();
            return "";
        } finally {
            try {
                Objects.requireNonNull(reader).close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

    /**
     * 字符串文本阅读
     *
     * @param str 要读的文字字符串
     */
    public static void readStr(String str) {
        ActiveXComponent ax = new ActiveXComponent("Sapi.SpVoice");
        //运行时输出语音内容
        Dispatch spVoice = ax.getObject();
        //设置音量 0 ~ 100
        ax.setProperty("Volume", new Variant(100));
        //设置朗读速度 -10 ~ +10
        ax.setProperty("Rate", new Variant(1));
        //执行朗读
        Dispatch.call(spVoice, "Speak", new Variant(str));
    }


}

 

 

 

 解决方式:把dLL文件放入jdk的bin目录下

 

 

存放效果

 

标签:String,Variant,Dispatch,opencv,spVoice,报错,ax,jacob,new
From: https://www.cnblogs.com/wenwenzuiniucha/p/18625034

相关文章

  • 《OpenCV计算机视觉》--介绍及基础操作
    文章目录《OpenCV计算机视觉》--介绍及基础操作一.OpenCV介绍二.下载OpenCV三.基础操作1.调用OpenCV2.读取图片信息3.读取图片的灰度图4.视频文件读取5.对图片进行切片6.提取RGB颜色通道7.合并颜色通道8.图片修改图片打码图片组合9.cv2.resize10.图形运算图像加法运算cv......
  • Python进阶之opencv图片和视频基本读取关闭
    opencv目录opencvpip下载图片基本读取关闭导入前提读取显示和关闭图片属性视频读取显示和关闭视频读取pip下载在终端下载已经修改pip源可直接下载,未修改为下面代码+-i镜像网址代码展示:pipinstallopencv-python==3.4.18.65pipinstallopencv-cont......
  • pytest7.4.0后报错:fixture '方法名' not found
    当你python中的pytest升级到7.4.0(包含)后,会发现脚本报错了,如以下报错信息:fixture'start_driver'notfound找不到你的测试夹具 出现此问题不要慌,如果你之前脚本是可以正常执行,升级pytest后报此错误,那大概率就是pytest升级问题导致的。解决方法:不要改什么内容,只需要把你......
  • 【YashanDB知识库】单机部署报错:prohibited operation, please check if the IP and u
    本文内容来自YashanDB官网,原文内容请见https://www.yashandb.com/newsinfo/7802960.html?templateId=1718516现象部署第1步install成功,在第2步deploy时报错。报错信息:prohibitedoperation,pleasecheckiftheIPandusernamearecorrect。原因主机配置文件(hosts.toml)......
  • ssGSEA中GSVA调用报错的解决方法
    ssGSEA中GSVA调用报错问题expr是表达谱,表达数据矩阵,行是基因,列是样本。cellMarker是一个包含基因集的列表。在R中使用GSVA的2.0.2版本gsva_data<-gsva(expr,cellMarker,method="ssgsea")会报错:Callinggsva(expr=.,gset.idx.list=.,method=.,…)isdefunct;......
  • 【YashanDB知识库】YMP迁移过程中报错YAS-02143或YAS-02193
    本文内容来自YashanDB官网,原文内容请见https://www.yashandb.com/newsinfo/7802944.html?templateId=1718516【标题】YMP迁移过程中报错accountlock【关键字】YMP迁移accountlockopenssl【问题描述】YMP所在机器的openssl版本低于1.1.1,在安装YMP及内置库时使用了--deps将......
  • 学习笔记——opencv图像基本运算方法
    #include<opencv2/opencv.hpp>intmain(){//读取图片cv::Matimg=cv::imread("1.bmp");//检查图片是否成功读取if(img.empty()){std::cerr<<"Error:Loadingimage"<<std::endl;return-1;......
  • FTP协议报错解决
    遇见FTP报状态码错误的解决办法之前文章中有大概提到过FTP状态码的各种情况,但是不详细,现在根据本博主工作中遇见过的FTP报错状态码重新写一篇以及解决办法11xx-信息性状态码2110-重新启动标记回复。34120-服务将在nnn分钟后准备就绪。56125-数据连接......
  • 【随手记录】Apache POI 报错:Zip bomb detected! The file would exceed the max. rat
    1、背景:使用POI解析Excel报错:Zipbombdetected!Thefilewouldexceedthemax.ratioofcompressedfilesizetothesizeoftheexpandeddata。Thismayindicatethatthefileisusedtoinflatememoryusageandthiscouldposeasecurityrisk.Youcanadj......
  • SAP 报错:指定参考表和参考字段
    起因是我在新建数据库表字段的时候,遇到了这样一个问题:原因是数量类型需要指定一个单位点击“货币/数量字段”加上参考字段就好了SAP里只有两个这样的特殊字段:QUAN和CURRDataType是QUAN(数量类型)的字段,要引用单位字段UNIT(即DataType为UNIT的字段);DataType是CURR......