Alexey wrote
>
> I can write simple rtsp to file as gst-launch-1.0 -e uridecodebin
> uri="rtsp" ! nvvidconv ! jpegenc ! matroskamux ! filesink
> location=out.mp4.
> How can I write multiple rtsp to diffrent files?
You could just run two separate pipelines with the script you used above OR
you could do something like this:
gst-launch-1.0 -e uridecodebin \
uri="FIRSTrtsp" ! nvvidconv ! jpegenc ! matroskamux ! filesink
location=FIRSTout.mp4 uridecodebin \
uri="SECONDrtsp" ! nvvidconv ! jpegenc ! matroskamux ! filesink
location=SECONDout.mp4
--
Sent from:
http://gstreamer-devel.966125.n4.nabble.com/_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel