ffplayout/resources/sh/playout.sh

14 lines
267 B
Bash
Raw Normal View History

2018-04-29 18:54:05 +02:00
#!/bin/bash
input=$1
if [[ "$input" == "start" ]]; then
sudo /bin/systemctl start srs
sleep 2
sudo /bin/systemctl start ffplayout
elif [[ "$input" == "stop" ]]; then
sudo /bin/systemctl stop srs
sleep 2
sudo /bin/systemctl stop ffplayout
fi