Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/srwi/fastledhub_audioviz
Send audio spectrum data to an ESP32 or ESP8266 running FastLEDHub.
https://github.com/srwi/fastledhub_audioviz
arduino audio-processing esp32 esp32-arduino esp8266 esp8266-arduino fastled leds music-visualizer signal-processing
Last synced: 6 days ago
JSON representation
Send audio spectrum data to an ESP32 or ESP8266 running FastLEDHub.
- Host: GitHub
- URL: https://github.com/srwi/fastledhub_audioviz
- Owner: srwi
- License: other
- Created: 2016-12-30T14:43:14.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-18T19:22:18.000Z (3 months ago)
- Last Synced: 2024-08-18T20:32:47.425Z (3 months ago)
- Topics: arduino, audio-processing, esp32, esp32-arduino, esp8266, esp8266-arduino, fastled, leds, music-visualizer, signal-processing
- Language: C
- Homepage:
- Size: 198 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FastLEDHub-AudioViz
![Build](https://github.com/srwi/FastLEDHub_AudioViz/actions/workflows/build.yml/badge.svg)
[![MIT license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/srwi/FastLEDHub_AudioViz/blob/master/LICENSE)FastLEDHub-AudioViz is a command line tool that can be used to send spectrum data from a Windows audio device to an ESP32 or ESP8266 running [FastLEDHub](https://github.com/srwi/FastLEDHub). The transmitted data consists of 16 bins corresponding to different frequency ranges in the audio spectrum. It can send data to multiple devices via a websocket connection. More information can be found in the [FastLEDHub](https://github.com/srwi/FastLEDHub) documentation.
## Example usage
Transmit spectrum to a single device:
```console
$ FastLEDHubAudioViz 192.168.0.42
```Transmit spectrum to multiple devices and visualize in the terminal window:
```console
$ FastLEDHubAudioViz 192.168.4.2 192.168.13.37 --visualize
```## Help
```console
$ FastLEDHubAudioViz --help
FastLEDHub-AudioViz
Usage: FastLEDHubAudioViz [OPTIONS] devices...Positionals:
devices TEXT:IPV4 ... REQUIRED List of target ip addressesOptions:
-h,--help Print this help message and exit
-v,--visualize Visualize spectrum in terminal
-m,--microphone Use microphone to capture audio (default: system audio)
-p,--period FLOAT:POSITIVE Data transmission period (default: 10 [ms])
-b,--beta FLOAT:FLOAT in [0 - 1] Low pass filter beta coefficient (default: 0.25)
```## Build
Currently only Windows x64 is supported:
### Requirements
- Visual Studio
- [VCPKG](https://vcpkg.io/en/getting-started.html)
- [CMake](https://cmake.org/) ≥ 3.20### Building
1. Define the root directory of VCPKG as environmental variable `VCPKG_ROOT`.
2. Install required packages`vcpkg install cli11:x64-windows ixwebsocket:x64-windows ftxui:x64-windows`
3. Clone repository`git clone https://github.com/srwi/FastLEDHub_AudioViz.git`
4. Generate build files`cmake FastLEDHub_AudioViz`
5. Build using Visual Studio