11 lines
268 B
Text
11 lines
268 B
Text
|
#!/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
|