28 lines
330 B
Markdown
28 lines
330 B
Markdown
# csoundbox
|
|
|
|
A soundboard to trigger sounds remotely or local with a keyboard.
|
|
|
|
First install
|
|
* libao
|
|
* mpg123
|
|
|
|
On Debian:
|
|
|
|
```
|
|
sudo apt-get install libao-dev
|
|
sudo apt-get install mpg123
|
|
```
|
|
|
|
|
|
If there's no sound:
|
|
Open the file `/etc/libao.conf` and change
|
|
```
|
|
default_driver=alsa
|
|
dev=default
|
|
```
|
|
to
|
|
```
|
|
default_driver=pulse
|
|
```
|
|
|