Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pac-dev/AudioMasher
Generative Audio Playground
https://github.com/pac-dev/AudioMasher
generative-music sporth web-audio web-audio-api
Last synced: about 10 hours ago
JSON representation
Generative Audio Playground
- Host: GitHub
- URL: https://github.com/pac-dev/AudioMasher
- Owner: pac-dev
- License: other
- Created: 2018-05-15T05:44:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-07T21:08:14.000Z (over 1 year ago)
- Last Synced: 2024-08-01T21:56:10.774Z (3 months ago)
- Topics: generative-music, sporth, web-audio, web-audio-api
- Language: JavaScript
- Homepage: https://audiomasher.org
- Size: 745 KB
- Stars: 63
- Watchers: 2
- Forks: 9
- Open Issues: 8
-
Metadata Files:
- Readme: readme.md
- License: license.txt
Awesome Lists containing this project
- project-awesome - pac-dev/AudioMasher - Generative Audio Playground (JavaScript)
README
# AudioMasher
Generative Audio Playground - https://www.audiomasher.org- Edit and play [Sporth](https://audiomasher.org/learn) audio scripts in the browser
- Browse and listen to existing scripts
- Add your scripts to the collection## Building
To get the latest source and build the server using [Git](https://git-scm.com/downloads) and [Go](https://golang.org/dl/):git clone https://github.com/pac-dev/AudioMasher
cd AudioMasher/
go buildSporth is already compiled to JS and included in the project, but if you want to compile it yourself, the code glue is here: https://github.com/pac-dev/SporthEm
## Running
- Serve the `static` folder from a static host.
- Create your own `config/masher.config` based on the included example config file.
- Run the AudioMasher binary alongside the `templates` and `config` directories.## Troubleshooting
- Files served by the static host might require some HTTP headers:
- access-control-allow-origin set to the server address
- content-type: application/wasm for the wasm file## Tools used
- Sporth is compiled to WASM using [Emscripten](https://github.com/kripken/emscripten)
- Scripts and users are stored using [Storm](https://github.com/asdine/storm)
- This project is tested with [BrowserStack](https://www.browserstack.com/).