10 lines
268 B
Bash
Executable file
10 lines
268 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source /etc/transmisor.conf
|
|
|
|
ffmpeg -loglevel quiet \
|
|
-f alsa -i default:CARD=Device \
|
|
-c:a libvorbis -b:a 96K -content_type audio/ogg \
|
|
-rw_timeout 20000000 \
|
|
"icecast://source:${PASSWORD}@${SERVER}:${PORT}/${SOURCE}" &
|
|
echo $! > /tmp/transmitir.pid
|