Android插件实现VAD语音检测

使用的是TarsosDSP开源库

1.网上下载TarsosDSP.jar导入

2.检测麦克风是否有声音   info.getInteger("sampleRateInHz")跟初始化TarsosDSP的采样率一样即可

//初始化TarsosDSP   采样率,位深度,通道数,编码方式,表示音频的字节序为大端字节序
TarsosDSPAudioFormat audioFormat = new TarsosDSPAudioFormat(16000,16,1,true,false);
  TarsosDSPAudioFloatConverter audioConverter = TarsosDSPAudioFloatConverter.getConverter(audioFormat);
    SilenceDetector silenceDetector = new SilenceDetector();

//获取麦克风数据大小
recordBufsize = AudioRecord
                .getMinBufferSize(info.getInteger("sampleRateInHz"),
                        AudioFormat.CHANNEL_IN_MONO,
                        AudioFormat.ENCODING_PCM_16BIT);
        recordBufsize = Math.max(recordBufsize, 4096);  //值越大VAD检测越准
//初始化麦克风
audioRecord = new AudioRecord(IetUtils.audioSource(),
                info.getInteger("sampleRateInHz"),
                AudioFormat.CHANNEL_IN_MONO,
                AudioFormat.ENCODING_PCM_16BIT,
                recordBufsize);

audioRecord.startRecording();//开始收音

byte data[] = new byte[recordBufsize];
int read;
//recordBufsize byte[]值越大越准  噪音会影响到VAD的检测
while (isRecording) {   //这个循环根据实际需要的间隔来检测
    read = audioRecord.read(data, 0, recordBufsize);  //读取麦克风数据
    if (AudioRecord.ERROR_INVALID_OPERATION != read) {
        float[] floatData = new float[data.length / audioFormat.getFrameSize()];
        audioConverter.toFloatArray(data, floatData);
        boolean silence = silenceDetector.isSilence(floatData.clone());
        if(silence){
            //没声音业务
        }else{
            //有声音业务
        }
    }
}

以上就是简单的麦克风检测是否有声音

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值