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