资源简介
RNNoise:RNN(音频)噪声抑制学习
代码片段和文件信息
/* Copyright (c) 2018 Gregor Richards
* Copyright (c) 2017 Mozilla */
/*
Redistribution and use in source and binary forms with or without
modification are permitted provided that the following conditions
are met:
- Redistributions of source code must retain the above copyright
notice this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright
notice this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
‘‘AS IS‘‘ AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING BUT NOT
LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT INDIRECT INCIDENTAL SPECIAL
EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT LIMITED TO
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE DATA OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY WHETHER IN CONTRACT STRICT LIABILITY OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include
#include “rnnoise.h“
#define frame_SIZE 480
int main(int argc char **argv) {
int i;
int first = 1;
float x[frame_SIZE];
FILE *f1 *fout;
DenoiseState *st;
st = rnnoise_create(NULL);
if (argc!=3) {
fprintf(stderr “usage: %s
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-05-29 04:37 rnnoise-master\
文件 37 2019-05-29 04:37 rnnoise-master\AUTHORS
文件 1581 2019-05-29 04:37 rnnoise-master\COPYING
文件 3731 2019-05-29 04:37 rnnoise-master\Makefile.am
文件 494 2019-05-29 04:37 rnnoise-master\README
文件 311 2019-05-29 04:37 rnnoise-master\TRAINING
文件 227 2019-05-29 04:37 rnnoise-master\autogen.sh
文件 3778 2019-05-29 04:37 rnnoise-master\configure.ac
目录 0 2019-05-29 04:37 rnnoise-master\doc\
文件 518 2019-05-29 04:37 rnnoise-master\doc\Doxyfile.in
目录 0 2019-05-29 04:37 rnnoise-master\examples\
文件 2143 2019-05-29 04:37 rnnoise-master\examples\rnnoise_demo.c
目录 0 2019-05-29 04:37 rnnoise-master\include\
文件 2299 2019-05-29 04:37 rnnoise-master\include\rnnoise.h
目录 0 2019-05-29 04:37 rnnoise-master\m4\
文件 10727 2019-05-29 04:37 rnnoise-master\m4\attributes.m4
文件 320 2019-05-29 04:37 rnnoise-master\rnnoise-uninstalled.pc.in
文件 293 2019-05-29 04:37 rnnoise-master\rnnoise.pc.in
目录 0 2019-05-29 04:37 rnnoise-master\src\
文件 6010 2019-05-29 04:37 rnnoise-master\src\_kiss_fft_guts.h
文件 7628 2019-05-29 04:37 rnnoise-master\src\arch.h
文件 7596 2019-05-29 04:37 rnnoise-master\src\celt_lpc.c
文件 2040 2019-05-29 04:37 rnnoise-master\src\celt_lpc.h
文件 1232 2019-05-29 04:37 rnnoise-master\src\common.h
文件 138 2019-05-29 04:37 rnnoise-master\src\compile.sh
文件 18203 2019-05-29 04:37 rnnoise-master\src\denoise.c
文件 16936 2019-05-29 04:37 rnnoise-master\src\kiss_fft.c
文件 6352 2019-05-29 04:37 rnnoise-master\src\kiss_fft.h
文件 4954 2019-05-29 04:37 rnnoise-master\src\opus_types.h
文件 13931 2019-05-29 04:37 rnnoise-master\src\pitch.c
文件 4682 2019-05-29 04:37 rnnoise-master\src\pitch.h
............此处省略12个文件信息
相关资源
- Python-Keras实现实时语义分割的深层神
- Python-手势识别使用在TensorFlow中卷积神
- Python-Keras实现的DeepSpeech端到端语音识
- Python-FastFCN用于语义分割的RethinkingD
- Python-使用RNN股市预测
- Python-使用最新版本的tensorflow实现se
- Python-人工智能和基于机器学习的机器
- Python-用TensorFlow实现神经网络实体关系
- Python-单目3D人体姿态检测
- Python-PyTorch实现基于Transformer的神经机
- Python-2019年百度的实体链指比赛ccks2
- Python-PyTorch实现的NEAT神经进化算法
- Python-DoWhy微软出品的Python因果推断库
- Python-训练和可视化分层注意网络Hie
- Python-通过神经网络和遗传算法进化的
- Python-DQNchainerPython用Chainer实现的Deep
- Python-图神经网络GNN文献大列表
- Python-基于视频的车辆计数系统使用
- Python-PythonTensorflowKeras实现参数tSNE算法
- Python-图像分割Keras在Keras中实现Segne
评论
共有 条评论