https://github.com/terroo/audio-visualizer
Audio Spectrum with SFML and FFTW
https://github.com/terroo/audio-visualizer
Last synced: 7 months ago
JSON representation
Audio Spectrum with SFML and FFTW
- Host: GitHub
- URL: https://github.com/terroo/audio-visualizer
- Owner: terroo
- License: gpl-3.0
- Created: 2024-12-14T20:08:49.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-14T20:23:45.000Z (about 1 year ago)
- Last Synced: 2024-12-14T21:24:28.410Z (about 1 year ago)
- Language: C++
- Size: 1.36 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# audio-visualizer
Audio Spectrum with SFML and FFTW

---
## Dependencies
+ C++ compiler: [GNU GCC](https://gcc.gnu.org/)/[Clang](https://clang.llvm.org/)/[MSVC](https://visualstudio.microsoft.com/)
+ [SFML](https://www.sfml-dev.org/)
+ [FFTW](https://fftw.org/)
Example of installing FFTW on Ubuntu:
```bash
sudo apt update
sudo apt install libfftw3-dev
```
---
## Compile and run
```bash
git clone https://github.com/terroo/audio-visualizer
cd audio-visualizer
g++ main.cpp -lsfml-graphics -lsfml-window -lsfml-system -lsfml-audio -lfftw3
./a.out Music.mp3
```
---
Watch the video: