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