diff options
Diffstat (limited to 'example-scripts/gstreamer')
7 files changed, 46 insertions, 8 deletions
diff --git a/example-scripts/gstreamer/source-avsync-test-clip-as-cam1.sh b/example-scripts/gstreamer/source-avsync-test-clip-as-cam1.sh index ca7fc27..14d9f6c 100755 --- a/example-scripts/gstreamer/source-avsync-test-clip-as-cam1.sh +++ b/example-scripts/gstreamer/source-avsync-test-clip-as-cam1.sh @@ -8,7 +8,7 @@ gst-launch-1.0 \ queue !\ videoconvert !\ videoscale !\ - video/x-raw,format=UYVY,width=1920,height=1080,framerate=25/1,pixel-aspect-ratio=1/1 ! \ + video/x-raw,format=I420,width=1920,height=1080,framerate=25/1,pixel-aspect-ratio=1/1 ! \ mux. \ \ src. !\ diff --git a/example-scripts/gstreamer/source-background-loop.py b/example-scripts/gstreamer/source-background-loop.py index be59d18..fd63fc0 100755 --- a/example-scripts/gstreamer/source-background-loop.py +++ b/example-scripts/gstreamer/source-background-loop.py @@ -15,7 +15,7 @@ class LoopSource(object): uridecodebin name=src uri=http://c3voc.mazdermind.de/testfiles/bg.ts ! videoscale ! videoconvert ! - video/x-raw,format=UYVY,width=1920,height=1080,framerate=25/1,pixel-aspect-ratio=1/1 ! + video/x-raw,format=I420,width=1920,height=1080,framerate=25/1,pixel-aspect-ratio=1/1 ! matroskamux ! tcpclientsink host=localhost port=16000 """ diff --git a/example-scripts/gstreamer/source-test-background.sh b/example-scripts/gstreamer/source-test-background.sh deleted file mode 100755 index 94dc978..0000000 --- a/example-scripts/gstreamer/source-test-background.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -gst-launch-1.0 \ - videotestsrc pattern=ball !\ - video/x-raw,format=UYVY,width=1280,height=720,framerate=25/1,pixel-aspect-ratio=1/1 !\ - matroskamux !\ - tcpclientsink host=localhost port=16000 diff --git a/example-scripts/gstreamer/source-videotestsrc-as-background-loop.sh b/example-scripts/gstreamer/source-videotestsrc-as-background-loop.sh new file mode 100755 index 0000000..acd2bcc --- /dev/null +++ b/example-scripts/gstreamer/source-videotestsrc-as-background-loop.sh @@ -0,0 +1,8 @@ +#!/bin/sh +gst-launch-1.0 \ + videotestsrc pattern=ball !\ + video/x-raw,format=I420,width=1920,height=1080,framerate=25/1,pixel-aspect-ratio=1/1 !\ + mux. \ + \ + matroskamux name=mux !\ + tcpclientsink host=localhost port=16000 diff --git a/example-scripts/gstreamer/source-videotestsrc-as-cam1.sh b/example-scripts/gstreamer/source-videotestsrc-as-cam1.sh new file mode 100755 index 0000000..0f29b63 --- /dev/null +++ b/example-scripts/gstreamer/source-videotestsrc-as-cam1.sh @@ -0,0 +1,12 @@ +#!/bin/sh +gst-launch-1.0 \ + videotestsrc pattern=red !\ + video/x-raw,format=I420,width=1920,height=1080,framerate=25/1,pixel-aspect-ratio=1/1 !\ + mux. \ + \ + audiotestsrc !\ + audio/x-raw,format=S16LE,channels=2,layout=interleaved,rate=48000 !\ + mux. \ + \ + matroskamux name=mux !\ + tcpclientsink host=localhost port=10000 diff --git a/example-scripts/gstreamer/source-videotestsrc-as-cam2.sh b/example-scripts/gstreamer/source-videotestsrc-as-cam2.sh new file mode 100755 index 0000000..e51dd09 --- /dev/null +++ b/example-scripts/gstreamer/source-videotestsrc-as-cam2.sh @@ -0,0 +1,12 @@ +#!/bin/sh +gst-launch-1.0 \ + videotestsrc pattern=green !\ + video/x-raw,format=I420,width=1920,height=1080,framerate=25/1,pixel-aspect-ratio=1/1 !\ + mux. \ + \ + audiotestsrc !\ + audio/x-raw,format=S16LE,channels=2,layout=interleaved,rate=48000 !\ + mux. \ + \ + matroskamux name=mux !\ + tcpclientsink host=localhost port=10001 diff --git a/example-scripts/gstreamer/source-videotestsrc-as-grabber.sh b/example-scripts/gstreamer/source-videotestsrc-as-grabber.sh new file mode 100755 index 0000000..37d8961 --- /dev/null +++ b/example-scripts/gstreamer/source-videotestsrc-as-grabber.sh @@ -0,0 +1,12 @@ +#!/bin/sh +gst-launch-1.0 \ + videotestsrc pattern=blue !\ + video/x-raw,format=I420,width=1920,height=1080,framerate=25/1,pixel-aspect-ratio=1/1 !\ + mux. \ + \ + audiotestsrc !\ + audio/x-raw,format=S16LE,channels=2,layout=interleaved,rate=48000 !\ + mux. \ + \ + matroskamux name=mux !\ + tcpclientsink host=localhost port=10002 |