aboutsummaryrefslogtreecommitdiff
path: root/voctocore/scripts/demo-cube.sh
blob: 43a7e036628711d66a4f1987ccbd81231f523c65 (plain)
  1. #!/bin/bash
  2. ../voctocore.py -vv &
  3. PID=$!
  4. echo "PID=$PID"
  5. sleep 1
  6. ./av-source-bmd-cam1.sh &
  7. ./av-source-bmd-cam2.sh &
  8. ./av-record-output-ffmpeg-timestamps.sh &
  9. ./av-stream-hd.sh &
  10. ./demo-cycle-modes.sh &
  11. while true; do sleep 1; done
  12. kill $PID
  13. wait