File: benchmark.sh

package info (click to toggle)
voctomix 1.3-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 3,368 kB
  • sloc: python: 4,958; sh: 733; makefile: 23
file content (15 lines) | stat: -rwxr-xr-x 486 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

../../voctocore/voctocore.py &
PID=$!
echo "PID=$PID"
sleep 1
../control-server/set-composite-side-by-side-equal.sh >/dev/null 2>/dev/null
../gstreamer/source-videotestsrc-as-cam1.sh >/dev/null 2>/dev/null &
../gstreamer/source-videotestsrc-as-cam2.sh >/dev/null 2>/dev/null &
../gstreamer/source-videotestsrc-as-grabber.sh >/dev/null 2>/dev/null &
../gstreamer/source-videotestsrc-as-background-loop.sh >/dev/null 2>/dev/null &
pidstat -p $PID 1 &
sleep 10
kill $PID
wait