diff options
-rwxr-xr-x | voctocore/benchmark.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/voctocore/benchmark.sh b/voctocore/benchmark.sh new file mode 100755 index 0000000..58b1b71 --- /dev/null +++ b/voctocore/benchmark.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +./voctocore.py & +PID=$! +echo "PID=$PID" +sleep 1 +./scripts/set-composite-side-by-side-equal.sh >/dev/null 2>/dev/null +./scripts/av-source-eevblog.sh >/dev/null 2>/dev/null & +./scripts/av-source-avsync.sh >/dev/null 2>/dev/null & +pidstat -p $PID 1 & +sleep 10 +kill $PID +wait |