aboutsummaryrefslogtreecommitdiff
path: root/voctocore/scripts
diff options
context:
space:
mode:
authorMaZderMind <github@mazdermind.de>2015-05-22 12:28:54 +0200
committerMaZderMind <github@mazdermind.de>2015-05-22 12:28:54 +0200
commit7032dd72208b9d44d41aff6d114dd01256940e7e (patch)
tree0fc10365a1dd026ed6b6f20c09071c3d658d9842 /voctocore/scripts
parent0dd95fb118d0863c4b8d1fe503020bb33950bc79 (diff)
script to test mode cycle on localhost with playback
Diffstat (limited to 'voctocore/scripts')
-rwxr-xr-xvoctocore/scripts/demo-local.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/voctocore/scripts/demo-local.sh b/voctocore/scripts/demo-local.sh
new file mode 100755
index 0000000..ecc652a
--- /dev/null
+++ b/voctocore/scripts/demo-local.sh
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+../voctocore.py -vv &
+PID=$!
+echo "PID=$PID"
+sleep 1
+./av-source-bmd-cam1.sh &
+./av-source-bmd-cam2.sh &
+./av-record-output-ffmpeg.sh &
+#./av-stream-hd.sh &
+demo-cycle-modes.sh
+ffplay tcp://localhost:11000
+kill $PID
+wait