https://github.com/kevinschweikert/go-soundboard
A cross-plattform Soundboard written in Go and Svelte
https://github.com/kevinschweikert/go-soundboard
Last synced: 7 months ago
JSON representation
A cross-plattform Soundboard written in Go and Svelte
- Host: GitHub
- URL: https://github.com/kevinschweikert/go-soundboard
- Owner: kevinschweikert
- License: mit
- Created: 2020-05-01T10:26:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-02T12:16:22.000Z (over 1 year ago)
- Last Synced: 2025-04-01T15:17:05.858Z (7 months ago)
- Language: HTML
- Homepage:
- Size: 356 KB
- Stars: 8
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://goreportcard.com/report/github.com/kevinschweikert/go-soundboard)

A cross-plattform Soundboard written in Go and Svelte
## Dependencies
- [Nodejs](https://nodejs.org/en/) (Tested with Version 10)
- [Go](https://golang.org/) (Tested with Version 1.14)
- [Beep](https://github.com/faiface/beep) ( It uses [Oto](https://github.com/hajimehoshi/oto) under the hood, so check out the dependencies if something's not working with your audio playback )
- [Gorilla Websocket](https://github.com/gorilla/websocket)
## Build
### Server
```bash
make server
```
### Webinterface
```bash
make ui
```
## Development
```bash
make dev
```
## Usage
```bash
-buff int
Output buffer size in bytes (default 256)
-path string
path to sound files (default "./sounds")
-port int
Port to listen for the webinterface (default 8000)
-samplerate int
Output Samplerate in Hz (default 48000)
```
POSSIBLE FUTURE FEATURES:
- [ ] Create API for audio files and listen to them from the browser
- [ ] Store volume and Favourite Sounds in Browser local storage