Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU)
GPU NVIDIA GeForce RTX 2080 Ti
• DeepStream Version
7.1
• JetPack Version (valid for Jetson only)
• TensorRT Version
• NVIDIA GPU Driver Version (valid for GPU only)
| NVIDIA-SMI 560.35.03 Driver Version: 560.35.03 CUDA Version: 12.6 |
• Issue Type( questions, new requirements, bugs)
bugs
• How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing)
this is the pipeline, but if one of the cameras is not reachable at the time the pipeline starts, the other camera doesn’t receive frames as well and the pipeline won’t start
nvmultiurisrcbin rtsp-reconnect-interval=10 rtsp-reconnect-attempts=-1 port=9000
ip-address=localhost sync-inputs=0 live-source=1 attach-sys-ts=TRUE nvbuf-memory-type=3
name=mux drop-pipeline-eos=1 enable-padding=true max-batch-size=2 batched-push-timeout=33333
width=1282 height=722 uri-list=rtsp://admin:*********@192.168.10.220:8554/ppe_basic.mp4,rtsp://admin:***********@192.168.10.185/h264Preview_01_sub
! nvinfer interval=0 name="primary_inference" config-file-path=config.txt batch-size=2 model-engine-file="model_b2_gpu0_fp16.engine"
! nvtracker tracker-width=1280 tracker-height=704 gpu-id=0 ll-lib-file=/opt/nvidia/deepstream/deepstream/lib/libnvds_nvmultiobjecttracker.so ll-config-file=tracker_config.yml
! nvstreamdemux name=demux
demux.src_0 ! queue max-size-buffers=10000 leaky=2 ! nvvideoconvert nvbuf-memory-type=3 ! video/x-raw(memory:NVMM),format=RGB ! fakesink async=false name=jpeg0
demux.src_1 ! queue max-size-buffers=10000 leaky=2 ! nvvideoconvert nvbuf-memory-type=3 ! video/x-raw(memory:NVMM),format=RGB ! fakesink async=false name=jpeg1
i have tried by substituting
uri-list=rtsp://admin:*********@192.168.10.220:8554/ppe_basic.mp4,rtsp://admin:***********@192.168.10.185/h264Preview_01_sub
with
uri-list=rtsp://admin:*********@192.168.10.220:8554/ppe_basicWRONGURL.mp4,rtsp://admin:***********@192.168.10.185/h264Preview_01_sub
instead if
- both of the cameras are reachable when the pipeline is starting
- while the pipeline is in execution one of the camera became unreachable
- then it goes back online
the reconnection attempt works well, i have tried with
to break the camera
sudo iptables -I FORWARD -d 192.168.10.185 -j DROP
to restore the camera
sudo iptables -D FORWARD -d 192.168.10.185 -j DROP
sudo iptables -D FORWARD -d 192.168.10.185 -j ACCEPT