std::string url = “filesrc location=video.mp4 ! qtdemux name=demux demux.video_0 ! queue ! h264parse ! omxh264dec disable-dvfs=1 ! nvvidconv ! video/x-raw,width=1280,height=720,format=BGRx ! videoconvert ! appsink sync=true”
cvCap.open(url, cv::CAP_GSTREAMER);
cv::VideoCapture cvCap;
cvCap.read(*frame);
I read frames from video.mp4 by url above, and got crash info " g_mutex_clear called on uninitialised or locked mutex".
Could you please help to fix it ???