diff options
Diffstat (limited to 'voctocore/scripts/videosrc1.sh')
-rwxr-xr-x | voctocore/scripts/videosrc1.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/voctocore/scripts/videosrc1.sh b/voctocore/scripts/videosrc1.sh new file mode 100755 index 0000000..39e5212 --- /dev/null +++ b/voctocore/scripts/videosrc1.sh @@ -0,0 +1,31 @@ +#!/bin/sh +rm -f /tmp/voctomix-sockets/v-cam1 /tmp/voctomix-sockets/a-cam1 +gst-launch-1.0 -v \ + uridecodebin \ + uri=file:///home/peter/ED_1280.avi \ + name=src \ + \ + src. !\ + queue !\ + progressreport !\ + videoconvert !\ + videorate !\ + videoscale !\ + video/x-raw,format=RGBx,width=1280,height=720,framerate=25/1 !\ + shmsink \ + sync=true \ + socket-path=/tmp/voctomix-sockets/v-cam1 \ + wait-for-connection=false \ + shm-size=100000000 \ + \ + src. !\ + queue !\ + audioconvert !\ + audiorate !\ + audio/x-raw,format=F32LE,layout=interleaved,channels=2,rate=48000 !\ + shmsink \ + sync=true \ + socket-path=/tmp/voctomix-sockets/a-cam1 \ + wait-for-connection=false \ + shm-size=10000000 + |