I have libnvdsgst_udp.so library available in my lib library, but when I want to use this nvdsudpsink plugin, it always shows that it can’t be created, why?
sink_udp = gst_element_factory_make ("nvdsudpsink", "udp-sink").
if (!sink_udp) {
g_printerr ("One element could not be created !sink_udp. Exiting.\n").
return -1.
}
If I change nvdsudpsink to udpsink it will work, I am very interested in using the deepstream plugin, can you help me?
I am hoping to rtsp package the final inferred video stream and push it out via nvudpsink for network access to the final detected resultant video information within the LAN.
Oh, and I ended up switching is using gstreamer’s udpsink to achieve rtsp push streaming with almost no latency. Method: used deepstream's nvv4l2h264enc plugin, which uses hardware encoding and is much faster than normal and h264enc
Thanks for your fast response every time answer