SimpleAudioDenoise
SimpleAudioDenoise copied to clipboard
A Simple and Efficient Implementation Of Fast Fourier Transform For Audio Denoise
### 解决过程 - 使用 VS2022 生成工程,报如题错误,改用 QT Creator 构建报错找不到 M_PI 定义,于是尝试如下图解决方案。 ### 图片  - `#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...