38 lines
542 B
Markdown
38 lines
542 B
Markdown
# csoundbox
|
|
|
|
A soundboard to trigger sounds remotely or local with a keyboard.
|
|
|
|
## Compile & install
|
|
|
|
First install
|
|
* libao
|
|
* mpg123
|
|
* libconfig
|
|
|
|
On Debian:
|
|
|
|
```
|
|
sudo apt-get install libao-dev
|
|
sudo apt-get install mpg123
|
|
sudo apt-get install libconfig-dev
|
|
```
|
|
|
|
|
|
If there's no sound:
|
|
Open the file `/etc/libao.conf` and change
|
|
```
|
|
default_driver=alsa
|
|
dev=default
|
|
```
|
|
to
|
|
```
|
|
default_driver=pulse
|
|
```
|
|
|
|
## Arguments
|
|
|
|
* -h: Show the help screen and exit
|
|
* -s: Start the server
|
|
* -i <ip>: connect to a server
|
|
* -l or without arguments: Start local
|