mirror of https://github.com/Lapikud/Viido.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
407 B
8 lines
407 B
#!/bin/bash |
|
|
|
# Needs gstreamer1.0-tools for gst-launch and gst-plugins-base for vorbis encoder |
|
|
|
while true; do |
|
GST_DEBUG=2 gst-launch-1.0 pulsesrc device=alsa_output.pci-0000_00_09.0.analog-stereo.monitor ! audioconvert ! audio/x-raw,channels=2 ! taginject tags="title=Viido,artist=Lapikud" ! vorbisenc quality=0.8 ! oggmux ! shout2send ip=kahtlane.eu port=8000 username= password= mount=live |
|
sleep 10 |
|
done
|
|
|