SimpleAudioDenoise icon indicating copy to clipboard operation
SimpleAudioDenoise copied to clipboard

A Simple and Efficient Implementation Of Fast Fourier Transform For Audio Denoise

Results 2 SimpleAudioDenoise issues
Sort by recently updated
recently updated
newest added

### 解决过程 - 使用 VS2022 生成工程,报如题错误,改用 QT Creator 构建报错找不到 M_PI 定义,于是尝试如下图解决方案。 ### 图片 ![QQ截图20230907162157](https://github.com/cpuimage/SimpleAudioDenoise/assets/77879226/c459dd6f-9243-419c-8fb8-adf2561f45f0) - `#define _USE_MATH_DEFINES` 这行定义一定得放在 `#include "stb_fft.h"` 前面。 ### 结果 - 成功生成 exe 文件,降噪效果很好。

the CMakeList.txt will raise error in Centos 7 ``` project(SimpleDenoise LANGUAGES C) # change to project(SimpleDenoise) ``` After that, cmake runs OK. but compilation failed. the C-compilation must comply with...