Hello everyone, I'm developing a video editing app which have a save functionality. The script for saving is pretty standard:
fourcc = cv2.cv.CV_FOURCC('MJPG')*
out = cv2.VideoWriter(outputVidName,fourcc, 24, (1280,720))
But whenever I execute, I got this error:
<class 'cv2.error'>(/root/OpenCV/opencv-2.4.9/modules/highgui/src/cap_gstreamer.cpp:518: error: (-210) Your version of Gstreamer doesn't support this codec acutally or needed plugin missing. in function CvVideoWriter_GStreamer::open )
I assume I'd need to install a video codec for this task, but I can't find the docs to do that. Anyone have any ideas how I should proceed? Thanks in advance for your help :)