diff options
-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 |