diff options
-rw-r--r-- | voctocore/default-config.ini | 2 | ||||
-rwxr-xr-x | voctocore/scripts/videosrc1.sh | 31 | ||||
-rwxr-xr-x | voctocore/scripts/videosrc2.sh | 30 |
3 files changed, 62 insertions, 1 deletions
diff --git a/voctocore/default-config.ini b/voctocore/default-config.ini index a3f277d..f2777d3 100644 --- a/voctocore/default-config.ini +++ b/voctocore/default-config.ini @@ -5,7 +5,7 @@ audio=cam1,cam2 socketpath=/tmp/voctomix-sockets videocaps=video/x-raw,format=RGBx,width=1280,height=720,framerate=25/1,pixel-aspect-ratio=1/1 -audiocaps=audio/x-raw,format=S16LE,layout=interleaved,channels=2,rate=48000 +audiocaps=audio/x-raw,format=F32LE,layout=interleaved,channels=2,rate=48000 [pause] ;image=/video/pause.png 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 + diff --git a/voctocore/scripts/videosrc2.sh b/voctocore/scripts/videosrc2.sh new file mode 100755 index 0000000..e136495 --- /dev/null +++ b/voctocore/scripts/videosrc2.sh @@ -0,0 +1,30 @@ +#!/bin/sh +rm -f /tmp/voctomix-sockets/v-cam2 /tmp/voctomix-sockets/a-cam2 +gst-launch-1.0 -v \ + uridecodebin \ + uri=file:///home/peter/Sintel.2010.720p.mkv \ + 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-cam2 \ + 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-cam2 \ + wait-for-connection=false \ + shm-size=10000000 |