write multiple rtsp to different flies

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

write multiple rtsp to different flies

Alexey
Hi!
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?



--
Sent from: http://gstreamer-devel.966125.n4.nabble.com/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: write multiple rtsp to different flies

colmekik
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