diff options
-rwxr-xr-x | voctocore/scripts/av-record-cam1-mirror.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/voctocore/scripts/av-record-cam1-mirror.sh b/voctocore/scripts/av-record-cam1-mirror.sh new file mode 100755 index 0000000..0a33a97 --- /dev/null +++ b/voctocore/scripts/av-record-cam1-mirror.sh @@ -0,0 +1,20 @@ +#!/bin/sh +gst-launch-1.0 \ + tcpclientsrc host=localhost port=13000 !\ + gdpdepay !\ + queue !\ + timeoverlay !\ + videoconvert !\ + avenc_mpeg2video bitrate=5000000 max-key-interval=0 !\ + queue !\ + mux. \ + \ + tcpclientsrc host=localhost port=23000 !\ + gdpdepay !\ + queue !\ + avenc_mp2 bitrate=192000 !\ + queue !\ + mux. \ + \ + mpegtsmux name=mux !\ + filesink location=foo.ts |