if I try:
writer = cv.CreateVideoWriter(file, -1,(int(800),int(600)), is_color=1)
-or-
writer = cv.CreateVideoWriter(file, -1,(800,600), is_color=1)
-or-
writer = cv.CreateVideoWriter(file, -1,(800.0,600.0), is_color=1)
I get the error:
TypeError: a float is required
with this I get progress:
writer = cv.CreateVideoWriter(file, -1, 25.0, (800,600), is_color=1)
error: Gstreamer Opencv backend doesn't support this codec acutally.
The input files are .png, the output is .avi