ffplayout/resources/sh/playout.sh
2018-04-29 18:54:05 +02:00

14 lines
267 B
Bash

#!/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