Custom Plugin in Python

Is it possible to build custom Deepstream plugins using Python? I’m looking for a Python variant of https://docs.nvidia.com/metropolis/deepstream/dev-guide/text/DS_sample_custom_gstream.html

If this isn’t possible, should I just do all my processing inside a probe? Does this have some limitations I should be aware of?

Thank you.

For DeepStream plugin, please refer to Deepstream Python - Intelligent Video Analytics / DeepStream SDK - NVIDIA Developer Forums

Theoretically, you can do processing with probe, the limitation is the processing should not be time consuming processing, it will hold buffers and the probe callback will block the whole pipeline before the processing finishes.

1 Like