mediamtx/internal/highleveltests/images/vlc/start.sh

19 lines
309 B
Bash
Raw Normal View History

2020-07-10 10:22:30 +00:00
#!/bin/sh -e
cvlc --play-and-exit --no-audio --no-video --sout file/ts:/out/stream.ts -vvv $@ 2>&1 &
2020-07-10 10:22:30 +00:00
COUNTER=0
while true; do
sleep 1
2020-07-10 10:22:30 +00:00
if [ $(stat -c "%s" /out/stream.ts) -gt 0 ]; then
exit 0
fi
COUNTER=$(($COUNTER + 1))
if [ $COUNTER -ge 15 ]; then
exit 1
fi
done