stream.sh/server_core.sh

9 lines
199 B
Bash
Raw Normal View History

2021-05-11 21:13:05 +02:00
#!/bin/bash
read -n4 container
if [[ "$container" == "RIFF" ]]; then
(echo -n "$container"; cat -) | aplay -f cd -
else
(echo -n "$container"; cat -) | ffmpeg -re -i - -f wav - | aplay -f cd -
fi