diff options
Diffstat (limited to 'example-scripts/gstreamer/source-videotestsrc-as-grabber.sh')
-rwxr-xr-x | example-scripts/gstreamer/source-videotestsrc-as-grabber.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/example-scripts/gstreamer/source-videotestsrc-as-grabber.sh b/example-scripts/gstreamer/source-videotestsrc-as-grabber.sh index 67a6c65..b5cd84c 100755 --- a/example-scripts/gstreamer/source-videotestsrc-as-grabber.sh +++ b/example-scripts/gstreamer/source-videotestsrc-as-grabber.sh @@ -1,11 +1,12 @@ #!/bin/sh +. `dirname "$0"`/../config.sh gst-launch-1.0 \ videotestsrc pattern=snow !\ - video/x-raw,format=I420,width=1920,height=1080,framerate=25/1,pixel-aspect-ratio=1/1 !\ + video/x-raw,format=I420,width=$WIDTH,height=$HEIGHT,framerate=$FRAMERATE/1,pixel-aspect-ratio=1/1 ! \ mux. \ \ audiotestsrc !\ - audio/x-raw,format=S16LE,channels=2,layout=interleaved,rate=48000 !\ + audio/x-raw,format=S16LE,channels=2,layout=interleaved,rate=$AUDIORATE !\ mux. \ \ matroskamux name=mux !\ |