aboutsummaryrefslogtreecommitdiff
path: root/example-scripts/misc/demo-local.sh
diff options
context:
space:
mode:
Diffstat (limited to 'example-scripts/misc/demo-local.sh')
-rwxr-xr-xexample-scripts/misc/demo-local.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/example-scripts/misc/demo-local.sh b/example-scripts/misc/demo-local.sh
new file mode 100755
index 0000000..bb57e45
--- /dev/null
+++ b/example-scripts/misc/demo-local.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+../../voctocore/voctocore.py &
+PID=$!
+echo "PID=$PID"
+sleep 1
+../ffmpeg/source-testvideo-as-cam1.sh >/dev/null 2>/dev/null &
+../ffmpeg/source-testvideo-as-cam2.sh >/dev/null 2>/dev/null &
+../ffmpeg/source-background-loop.sh &
+../ffmpeg/av-record-output-ffmpeg.sh &
+#../ffmpeg/stream-hd.sh &
+../control-server/demo-cycle-modes.sh &
+ffplay tcp://localhost:11000
+kill $PID
+wait