Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kneelawk/kviz
Music visualizer experiments
https://github.com/kneelawk/kviz
Last synced: 25 days ago
JSON representation
Music visualizer experiments
- Host: GitHub
- URL: https://github.com/kneelawk/kviz
- Owner: Kneelawk
- License: mit
- Created: 2024-01-19T08:43:33.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-01-29T12:27:09.000Z (11 months ago)
- Last Synced: 2024-10-15T06:34:14.984Z (2 months ago)
- Language: Rust
- Size: 101 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# KViz
A set of music visualizer experiments in rust.
## Running in dev
To run in the dev environment, run:
```bash
./run-dev.sh
```Be sure you have built ffmpeg beforehand though, using:
```bash
./build-ffmpeg.sh
```## Building a release
This currently only builds on Linux. I do not currently plan to support other operating systems.
To build, run:
```bash
./build-ffmpeg.sh
./build-release.sh
./build-dist.sh
```Theoretically, building on Max OS X would involve using `install_name_tool` to change the `rpath` of the release
executable to be local like what is done on Linux currently. On Windows, one would just need to put all the `.dll` files
in the same directory as the executable and that should get it to work.