Please provide complete information as applicable to your setup.
• Hardware Platform (GPU)
• DeepStream Version 7.0
• TensorRT Version 8.6.1
• NVIDIA GPU Driver Version (535)
I’m working with deepstream python bindings.
I wanted to make API calls to an http endpoint for every frame processed in DeepStream pipeline working on multiple rtsp streams. But I’m only able to do it synchronously which brings in a lot of vulnerabilities, might even result in the pipeline crashing. Rather how can I do it asynchronously, because I’m not able to directly use async-await in the python codebase. For making the synchronous calls, I was just using the requests
library and sending a json string. How can I do the same asynchronously?