**• Hardware Platform (GPU) RTX 3060
**• DeepStream Version 7.0
• TensorRT Version
**• NVIDIA GPU Driver Version (valid for GPU only) CUDA12.2
• Issue Type (questions)
I found that if I use 3 RTSP streams to run deepstream_parallel_inference, and the src-ids
for the branches are not set to 0;1;2 as shown below:
branch0:
## pgie's id
pgie-id: 999
## select sources by sourceid
src-ids: 1;2
branch1:
## pgie's id
pgie-id: 888
## select sources by sourceid
src-ids: 0;1
The RTSP streams will stop completely after running for a while.
It must be set as follows:
branch0:
## pgie's id
pgie-id: 999
## select sources by sourceid
src-ids: 0;1;2
branch1:
## pgie's id
pgie-id: 888
## select sources by sourceid
src-ids: 0;1;2
in order to maintain a continuous connection.
The test results show that the src-ids
must be set to include all the sources in order for the streams to continue running.