diff options
Diffstat (limited to 'examples/vlc/reflector')
-rwxr-xr-x | examples/vlc/reflector/vlc-noccam.sh | 6 | ||||
-rwxr-xr-x | examples/vlc/reflector/vlc-roofcam.sh | 6 | ||||
-rwxr-xr-x | examples/vlc/reflector/vlc-southcam.sh | 6 |
3 files changed, 18 insertions, 0 deletions
diff --git a/examples/vlc/reflector/vlc-noccam.sh b/examples/vlc/reflector/vlc-noccam.sh new file mode 100755 index 0000000..48d1ca6 --- /dev/null +++ b/examples/vlc/reflector/vlc-noccam.sh @@ -0,0 +1,6 @@ +#!/bin/bash +while :; do +vlc -I dummy -vv --network-caching 500 rtsp://151.216.252.134/live.sdp vlc://quit --sout '#std{access=http{metacube},mux=ts,dst=:5003/noccam.ts}' +sleep 1 +done + diff --git a/examples/vlc/reflector/vlc-roofcam.sh b/examples/vlc/reflector/vlc-roofcam.sh new file mode 100755 index 0000000..8ca4892 --- /dev/null +++ b/examples/vlc/reflector/vlc-roofcam.sh @@ -0,0 +1,6 @@ +#!/bin/bash +while :; do +vlc -I dummy -vv --network-caching 500 rtsp://151.216.252.104/live.sdp vlc://quit --sout '#std{access=http{metacube},mux=ts,dst=:5001/roofcam.ts}' +sleep 1 +done + diff --git a/examples/vlc/reflector/vlc-southcam.sh b/examples/vlc/reflector/vlc-southcam.sh new file mode 100755 index 0000000..099aa74 --- /dev/null +++ b/examples/vlc/reflector/vlc-southcam.sh @@ -0,0 +1,6 @@ +#!/bin/bash +while :; do +vlc -I dummy -vv --network-caching 500 rtsp://151.216.234.23/live.sdp vlc://quit --sout '#std{access=http{metacube},mux=ts,dst=:5002/southcam.ts}' +sleep 1 +done + |