Please provide complete information as applicable to your setup.
• Hardware Platform ASUS Bare Metal
. Ubuntu 22.04.5 LTS
. GPU RTX-6000ADA
. Driver Version: 560.35.05
• DeepStream Version 7.1.0
• TensorRT Version 10.6
• NVIDIA GPU Driver Version 560.35.05
• Ethernet controller: Mellanox Technologies MT2910 Family [ConnectX-7]
• hca_id: mlx5_0
• transport: InfiniBand (0)
• state: PORT_ACTIVE (4)
• Issue Type questions
• How to reproduce the issue ?
I followed the README in /opt/nvidia/deepstream/deepstream-7.1/sources/apps/sample_apps/deepstream-ucx-test
I ran these commands to set a static IP for the Mellanox ConnectX-7 card,
sudo ip link set dev enp2s0f0np0 down
sudo ip addr add 192.168.168.67/24 dev enp2s0f0np0
sudo ip link set dev enp2s0f0np0 mtu 9000
sudo ip link set dev enp2s0f0np0 up
ip -f inet addr show enp2s0f0np0
Running Server I get:
bill@H4Mrd3:/opt/nvidia/deepstream/deepstream/sources/apps/sample_apps/deepstream-ucx-test$ ./deepstream-ucx-test-app -t 1 -s 192.168.168.67 4000 1920 1080 file:////opt/nvidia/deepstream/deepstream/samples/streams/sample_1080p_h264.mp4
Using URI: file:////opt/nvidia/deepstream/deepstream/samples/streams/sample_1080p_h264.mp4
Server listening on: 192.168.168.67 : 4000
[1734976545.138070] [H4Mrd3:16076:0] ucp_context.c:1774 UCX WARN UCP version is incompatible, required: 1.13, actual: 1.12 (release 1)
Running Client I get:
bill@H4Mrd3:/opt/nvidia/deepstream/deepstream-7.1/sources/apps/sample_apps/deepstream-ucx-test$ ./deepstream-ucx-test-app -t 1 -c 192.168.168.67 4000 1920 1080 output.mp4
Now saving stream to: output.mp4
Failed to query video capabilities: Invalid argument
[1734979244.542099] [H4Mrd3:19416:0] ucp_context.c:1774 UCX WARN UCP version is incompatible, required: 1.13, actual: 1.12 (release 1)
Running...
End of stream
Returned, stopping playback
Deleting pipeline
bill@H4Mrd3:/opt/nvidia/deepstream/deepstream-7.1/sources/apps/sample_apps/deepstream-ucx-test$
and the Server gives:
Decodebin child added: source
Decodebin child added: decodebin0
Running...
Decodebin child added: qtdemux0
Decodebin child added: multiqueue0
Decodebin child added: h264parse0
Decodebin child added: capsfilter0
Decodebin child added: aacparse0
Decodebin child added: avdec_aac0
Decodebin child added: nvv4l2decoder0
Failed to query video capabilities: Invalid argument
In cb_newpad
In cb_newpad
The Server appears to load the video file and run it but fails with Invalid Argument.
How can I get the Nvidia provided sample app to work?