mirror of https://bitbucket.org/ausocean/av.git
7 lines
127 B
Bash
7 lines
127 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export AUDIODEV=hw:1,0
|
||
|
while true; do
|
||
|
play -q -V0 -t raw -r 44.1k -e signed -b 16 -c 1 /home/pi/shrimp.pcm
|
||
|
done
|