hardware:
Software part of jetson-stats 4.3.1 - (c) 2024, Raffaello Bonghi
Model: NVIDIA Orin Nano Developer Kit - Jetpack 5.1.3 [L4T 35.5.0]
NV Power Mode[0]: 10W
Serial Number: [XXX Show with: jetson_release -s XXX]
Hardware:
- P-Number: p3767-0004
- Module: NVIDIA Jetson Orin Nano (4GB ram)
Platform:
- Distribution: Ubuntu 20.04 focal
- Release: 5.10.192-tegra
jtop:
- Version: 4.3.1
- Service: Active
Libraries:
- CUDA: 11.4.315
- cuDNN: 8.6.0.166
- TensorRT: 8.5.2.2
- VPI: 2.4.8
- Vulkan: 1.3.204
- OpenCV: 4.5.4 - with CUDA: NO
nvidia@nvidia-desktop:~$ deepstream-app --version
deepstream-app version 6.3.0
DeepStreamSDK 6.3.0
I need to push the code stream data using RTSP,I use deepstream for process debugging, but there are always errors at runtime:
nvidia@nvidia-desktop:~/app/algorithm$ deepstream-app -c test_push_rtsp.txt
** ERROR: <create_udpsink_bin:722>: create_udpsink_bin failed
** ERROR: <create_sink_bin:831>: create_sink_bin failed
** ERROR: <create_processing_instance:956>: create_processing_instance failed
** ERROR: <create_pipeline:1576>: create_pipeline failed
** ERROR: <main:697>: Failed to create pipeline
Quitting
App run failed
Here is my config file:
[application]
enable-perf-measurement=1
perf-measurement-interval-sec=5
[source0]
enable=1
type=2
uri=rtsp://192.168.0.119:554
num-sources=1
gpu-id=0
nvbuf-memory-type=0
[streammux]
gpu-id=0
batch-size=1
width=1920
height=1080
batched-push-timeout=40000
[primary-gie]
enable=0
gpu-id=0
config-file=/home/nvidia/app/algorithm/config_infer_primary_yolo11.txt
batch-size=1
[sink0]
enable=0
# ** type - 1=FakeSink 2=EglSink 3=File 4=RTSPStreaming
type=3
# ** (for FileSink) container 1=mp4 2=mkv; codec 1=h264 2=h265
container=1
codec=1
# ** encoder type 0=Hardware 1=Software
enc-type=0
sync=0
#iframeinterval=10
bitrate=2000000
# ** H264 Profile - 0=Baseline 2=Main 4=High
# ** H265 Profile - 0=Main 1=Main10
# ** set profile only for hw encoder, sw encoder selects profile based on sw-preset
profile=0
output-file=/home/nvidia/Code/DeepStream-Yolo/test_yolo11/ds_test2.mp4
source-id=0
[sink1]
enable=1
type=4
sync=0
gpu-id=0
bitrate=2000000
rtsp-port=8553
udp-port=5400
nvbuf-memory-type=0
I already installed GStreamer and dependent components as NVIDIA documentation requires. However, an error will still occur when setting RTSP server.
I tried to reinstall deepstream, but the error still exists.