I used the following page from OpenCV 3.0.0
tutorial: Tutorial in docs
When I tried to use the example that saves videos, it doesn't work.
It displays the content from the webcam, and also creates a file called output.avi
, but when I checked the size of ouput.avi
, it was zero bytes.
I also tried using different codecs, like YUY2
.
I use Python 2.7.8
and OpenCV 3.0.0
and Windows 8.1
out = cv2.VideoWriter('output.avi',fourcc, 20.0,(int(cap.get(3)),int(cap.get(4))), False)
– Orelie