How to integrate DeepStream's RTSP output stream into the VST video wall in the AI-NVR demo?

My goal is to simultaneously display IP camera footage and DeepStream inference results on the VST video wall in the AI-NVR demo.

I have obtained the RTSP video stream output from DeepStream by modifying the configuration file, and the stream can be opened normally with VLC.

However, when I add the stream as a camera to the VST, it seems to be reprocessed by DeepStream as new input.

Is there a way to control the added stream so that it is not treated as input by DeepStream?

I would really appreciate it if someone could help me resolve this issue. Thank you in advance for your assistance!

You can add the WDM_WL_NAME_IGNORE_REGEX environment variable under SDR in your device compose file (ie. compose_agx.yaml) and set this to some regex value in order to ignore all streams in VST that match that given regex.

For instance, you can set this to:

WDM_WL_NAME_IGNORE_REGEX : ".*overlay.*"

in order to ignore any streams with the lowercase word “overlay” in the name that you set

Thank you for your help ! It works well !

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