资源简介
提取的webrtc VAD模块 可运行
代码片段和文件信息
// audioprocess.cpp : 定义控制台应用程序的入口点。
//
#include “stdafx.h“
#include
#include “webrtc_vad.h“
#define frameLENGTH 80
#define SAMPLE_RATE 8000
void vadTest(){
FILE *fpInputf *fpOutput;
fpInputf = fopen(“F01S00_8k.raw“ “rb“);
if (fpInputf == NULL){
return;
}
fpOutput = fopen(“F01S00_8k2.raw“ “wb“);
VadInst*inst = WebRtcVad_Create();
WebRtcVad_Init(inst);
WebRtcVad_set_mode(inst 2);
short audioframe[frameLENGTH];
short audioframe2[frameLENGTH];
while (!feof(fpInputf))
{
int read_size = fread(audioframe sizeof(short) frameLENGTH fpInputf);
int status = WebRtcVad_Process(inst SAMPLE_RATE audioframe frameLENGTH);
if (status == -1)
{
printf(“WebRtcVad_Process is error\n“);
return;
}
printf(“%d“ status);
if (status == 1){
fwrite(audioframe sizeof(short) read_size fpOutput);
fflush(fpOutput);
}
}
fclose(fpOutput);
fclose(fpInputf);
WebRtcVad_Free(inst);
}
int _tmain(int argc _TCHAR* argv[])
{
vadTest();
return 0;
}
- 上一篇:EMMC 5.1 jedec spec
- 下一篇:2017年美国数学建模大赛题目
相关资源
- Vivado2019.2 lic 基础的都可以用
- mybatis3-api.chm
- zynq下pcie nvme硬盘接口实现
- Vivado时序分析高级使用技巧详解.zip
- 音视频公开课WebRTC
- vivado时序菜鸟学习
- vivado HLS图像处理了解
- ALINX基于Vivado的MicroBlaze基础教程.pdf
- webRTC+socketio+SpringBoot视频及文字聊天
- xilinx vivado srio license (各版本亲测可
- invadersf_10261826.zip
- 基于FPGA开发的小游戏
- KVADODBGRID控件
- WebRtc视频聊天demo包括多人聊天
- 手把手教你基于ViVado构建MicroBlaze软核
- zcu10_PS端LED开关工程
-
ug898-vivado-em
bedded-design - 基于vivado平台的zynq PicoBlaze
- ADI ad9361 vivado 下源代码
- WebRTC自带的peerconenction Windows版本
- WebRTC零基础开发者教程
- Vivado高级使用技巧-使用误区及进阶
- 基于Xilinx Zynq-7000的AD7414试验
- Vivado设计流程
- AX7103黑金Verilog教程
- FPGA数字信号处理五Vivado FIR IP核实现
- FPGA数字信号处理六直接型IIR滤波器
- FPGA数字信号处理三串行FIR滤波器Ver
- Vivado使用手册
- vivado高层次综合手册
评论
共有 条评论