Questions tagged [nvidia-deepstream]

54 questions
1
vote
0 answers

Nvidia deepstream 5: GLib-GObject-CRITICAL error

I am trying to install deepstream-5 inside a docker container. I used a container with the following specs: 10.2-cudnn7-tensorrt7-devel-ubuntu18.04 (cuda 10.2.89, nccl 2.7.8, cudnn 7.6.5.32, tensorrt 7.0.0.11) from Here. And python 3.6 After that, I…
Fadwa
  • 1,717
  • 5
  • 26
  • 43
1
vote
0 answers

Can deepstream sdk work on GTX Geforce nvidia graphic cards?

I have an old geforce GTX (960 M) graphic card , and i wanted to use the Deep-stream SDK , does it support older generation graphic cards ?
Bezal-el
  • 33
  • 1
  • 2
  • 8
1
vote
1 answer

How to use Filesink in Deepstream test application to save video

Hello everyone my question is related with Nvidia Deepstream-5.0 SDK, I am trying to run a sample test deepstream-nvdsanalytics-test which is in "/source/apps/sample_apps" in NVIDIA Deepstream container. I want to save the video file by using…
Devesh
  • 11
  • 1
  • 2
1
vote
4 answers

Error: Running nvidia deepstream 5.0 SDK on Ubuntu

Trying to run nvidia's deepstream5.0 sdk (sample program) on ubuntu 18.04 by following the document (https://docs.nvidia.com/metropolis/deepstream/dev-guide/index.html). The application is installed in the path:…
Amarnath R
  • 973
  • 3
  • 14
  • 33
1
vote
0 answers

How to get NvidiaDeepstreamSDK iotedge module working on jetson nano?

I've had issues setting up the DeepstreamSdk IoTedge module on the jetson nano for the last week and I cannot get past it. I've installed IoTedge runtime and all the necessities for IoT edge to run. It runs perfectly including other modules like the…
0
votes
0 answers

Modify a buffer in Python Gstreamer 1.14.5 using custom plugin

I am using Gstreamer 1.14.5 with its Python bindings. I'm looking to remove custom RTP Header Extensions from an RTSP stream. Hence I need to open each packet, see if the X bit is set, and if so remove some part of the buffer. This should be doable…
0
votes
0 answers

G-streamer Deepstream Could not receive message (Parse error)

I am connecting multiple (10-30) rstp streams to a g-streamer pipeline using deepstream for object tracking and running inference (by using a muxer to batch the streams into one). However, the pipeline almost immediately crashes when the streams…
0
votes
0 answers

Receive RTP (Pipeline demo)

setup: • Hardware Platform:Jetson Xavier NX • DeepStream Version: 6.1 • JetPack Version: 5.0.1 DP • TensorRT Version: 8.4.0.11 • Issue Type( questions) Hi folks, I work with deepstream and python bindings I have pipeline that captare UDP H264 stream…
0
votes
0 answers

Installing DeepStream SDK on Jetson Nano 4GB-B01 with limited space

I have a Jetson Nano 4GB (B01) SOC board and I am running out of space to install the DeepStream SDK. I want to use DeepStream for video streaming application on my Jetson Nano SOC board, but I need guidance on how to install it . What are the steps…
0
votes
0 answers

Python binding send RTP

setup: • Hardware Platform:Jetson Xavier NX • DeepStream Version: 6.1 • JetPack Version: 5.0.1 DP • TensorRT Version: 8.4.0.11 • Issue Type( questions) Hi folks, I run some Python script on my Jetson Xavier that captures the h264 stream and…
0
votes
0 answers

NVPARSER: HEVC: Seeking is not performed on IRAP picture ( GStreamer )

Device Specification : **• Hardware Platform (Jetson Xavier NX) **• Deepstream NGC Container ( DeepStream-l4t container 6.0 samples ) **• JetPack Version 4.6.1 (L4T 32.7.1) **• CUDA 10.2.300 **• TensorRT Version 8.2.1.8 **• CUDNN : 8.2.1.32 I am…
0
votes
0 answers

How do I capture all GStreamer warning logs?

I have a problem with RTSP streams from some cameras randomly resetting timestamp information in the RTP packets. I am using the Python bindings for GStreamer (and DeepStream) and I when using GST_DEBUG=2 I am able to observe the warning messages…
danigc
  • 9
  • 2
0
votes
0 answers

Difference between predictions of exported TensorRT engine and PyTorch pth models

Problem: inference results from deepstream and local inference do not match (using same png images). While testing what percentage of predictions match between engine and pth models, only 26% matched out of 180k images. How I reproduce results: I…
0
votes
0 answers

Does AWS IVS url link change

We are working on using AWS IVS to work with severeal devices but we want to know two things. Does the url link change anytime wwe use the AWS IVS to stream live video feeds to AWS. How do we associate a device ID in AWS IVS for multiple…
0
votes
0 answers

Parallelize loop for saving frames with Cython (Deepstream)

I use deepstream multistreaming in Python. I need to speed up the loop for saving frames from each rtsp source. How can I parallelize this process using Cython? tiler_sink_pad_buffer_probe function in following example shows the…