You know that we need to create a pipeline for using GStreamer. For example, when I use Hikvision cameras, my rtsp link will be
'rtsp://username:password@ipaddress:portnumber'
without gstreamer. When I want to use GStreamer, my pipeline will be
rtspsrc location=rtsp://username:password@ipaddress:portnumber max-size-buffers=0 ! rtph264depay ! h264parse ! decodebin ! videoconvert ! appsink drop=true sync=false async=false
or something like that.
For MV12, I should use rtsp link
'rtsp://ipaddress:portnumber/live'
without GStreamer.
But, what should be my pipeline to use GStreamer for MV12?