Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU) Jetson AGX Orin • DeepStream Version 6.2 • JetPack Version (valid for Jetson only) 5.1
Hello, this might look a bit basic but i wanted to know if there’s a way to get RTSP link to stream and us for sample-3 if i’m using a USB camera connected to Jetson AGX Orin.
There is no update from you for a period, assuming this is not an issue any more. Hence we are closing this topic. If need further support, please open a new one. Thanks.
You need a RTSP server running (such as using mediamtx dockerdocker run --rm -it --network=host bluenviron/mediamtx:latest or mediamtx ) and then publish the stream from USB camera to a RTSP URL(by ffmpeg ffmpeg -f v4l2 -i /dev/video0 -vcodec h264 -an -f rtsp rtsp://You-IP:8554/You-stream-name or gstreamer to ultilize hardware encodergst-launch-1.0 v4l2src device=/dev/video0 ! nvvidconv ! nvv4l2h264enc ! rtspclientsink location=rtsp://You-IP:8554/You-stream-name), then you can access the RTSP stream with URL ‘rtsp://You-IP:8554/You-stream-name’. (The gst-launch-1.0 command is only a reference, you may need to adapt the USB camera parameters or capabilities in v4l2src).