blob: e592940cffc286f3478fe1d15cf050a07bee5445 (
plain)
- #!/bin/sh
- gst-launch-1.0 \
- uridecodebin \
- uri=http://video.blendertestbuilds.de/download.blender.org/ED/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=S16LE,layout=interleaved,rate=44100,channels=2 !\
- shmsink \
- sync=true \
- socket-path=/tmp/voctomix-sockets/a-cam1 \
- wait-for-connection=false \
- shm-size=10000000
|