diff options
author | MaZderMind <github@mazdermind.de> | 2015-05-22 12:28:54 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2015-05-22 12:28:54 +0200 |
commit | 7032dd72208b9d44d41aff6d114dd01256940e7e (patch) | |
tree | 0fc10365a1dd026ed6b6f20c09071c3d658d9842 | |
parent | 0dd95fb118d0863c4b8d1fe503020bb33950bc79 (diff) |
script to test mode cycle on localhost with playback
-rwxr-xr-x | voctocore/scripts/demo-local.sh | 14 |
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 |