aboutsummaryrefslogtreecommitdiff
path: root/voctocore/scripts/demo-local.sh
blob: ecc652a58dc50bd7c1a4c53c75b1cc7633ab8a93 (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.sh &
  9. #./av-stream-hd.sh &
  10. demo-cycle-modes.sh
  11. ffplay tcp://localhost:11000
  12. kill $PID
  13. wait