blob: 005b027844eafb3674e34ba31598f5e54ad20840 (
plain)
- #!/bin/sh
- confdir="`dirname "$0"`/../"
- . $confdir/default-config.sh
- if [ -f $confdir/config.sh ]; then
- . $confdir/config.sh
- fi
- gst-launch-1.0 \
- videotestsrc pattern=snow !\
- 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=$AUDIORATE !\
- mux. \
- \
- matroskamux name=mux !\
- tcpclientsink host=localhost port=10002
|