https://github.com/idroz/mezmer
OP-XY/Z sound visualiser
https://github.com/idroz/mezmer
audio-processing audio-visualization op-xy
Last synced: 4 months ago
JSON representation
OP-XY/Z sound visualiser
- Host: GitHub
- URL: https://github.com/idroz/mezmer
- Owner: idroz
- License: apache-2.0
- Created: 2024-12-30T14:45:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-08T22:06:53.000Z (over 1 year ago)
- Last Synced: 2025-11-20T11:02:50.695Z (7 months ago)
- Topics: audio-processing, audio-visualization, op-xy
- Language: Go
- Homepage:
- Size: 11.9 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# mezmer
OP-XY/Z sound visualiser
## Quick run
```bash
rm main; go build -o main; ./main
```
## Building from Source
The build system was tested only on a mac.
Required packages:
```bash
brew install glfw
brew install pkg-config
brew install mingw-w64
```
Build for Darwin
```bash
GOOS=darwin GOARCH=arm64 go build -o bin/mezmer
```
```bash
CGO_ENABLED=1 GOOS=windows CC="x86_64-w64-mingw32-gcc" GOARCH=amd64 go build -o dist/Mezmer_Win_x64.exe
```
``` bash
CGO_ENABLED=1 GOOS=windows CC="i686-w64-mingw32-gcc" GOARCH=386 go build -o dist/Mezmer_Win_x32.exe
```