diff options
Diffstat (limited to 'example-scripts/gstreamer/source-all-videotestsrces.sh')
-rwxr-xr-x | example-scripts/gstreamer/source-all-videotestsrces.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/example-scripts/gstreamer/source-all-videotestsrces.sh b/example-scripts/gstreamer/source-all-videotestsrces.sh new file mode 100755 index 0000000..a733107 --- /dev/null +++ b/example-scripts/gstreamer/source-all-videotestsrces.sh @@ -0,0 +1,14 @@ +#!/bin/sh +confdir="`dirname "$0"`/../" +. $confdir/default-config.sh +if [ -f $confdir/config.sh ]; then + . $confdir/config.sh +fi + +workdir=`dirname "$0"` +$workdir/source-videotestsrc-as-background-loop.sh & +$workdir/source-videotestsrc-as-cam1.sh & +$workdir/source-videotestsrc-as-cam2.sh & +$workdir/source-videotestsrc-as-grabber.sh & + +wait |