00_video_decode only process video files, how to deal with rtsp??
maybe:
- ffmpeg(pull rtsp) + 00_video_decode ?
- gstreamer + 00_video_decode ?
00_video_decode only process video files, how to deal with rtsp??
maybe:
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
Thank you very much
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.