00_video_decode , how to use with rtsp?

00_video_decode only process video files, how to deal with rtsp??
maybe:

  1. ffmpeg(pull rtsp) + 00_video_decode ?
  2. gstreamer + 00_video_decode ?

Hi,
You would need to implement RTSP depaying to extract H264/H265 stream and then send to decoder like:

RTSP depaying → H264/H265 stream → 00_video_decode

There is existing implementation in gstreamer and you can run command like:

$ gst-launch-1.0 uridecodebin uri=__RTSP_ADDRESS__ ! nvvidconv ! nv3dsink
1 Like

Thank you very much

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.