I’ve seen examples of ds_example custom plugins for DeepStream 2.0
Do our custom plugins have to be named ds_example? If so, how can we enable multiple custom plugins in the same DeepStream pipeline?
Thanks.
I’ve seen examples of ds_example custom plugins for DeepStream 2.0
Do our custom plugins have to be named ds_example? If so, how can we enable multiple custom plugins in the same DeepStream pipeline?
Thanks.
No. It is registered by gst_element_register (plugin, “dsexample”, GST_RANK_PRIMARY,GST_TYPE_DSEXAMPLE)
You can change the name.
Thank you