简体   繁体   中英

cv2 Writing stream from array

This code records video from a webcam:

import cv2
w,h = 640,480
cap = cv2.VideoCapture(0,cv2.CAP_DSHOW)
out = cv2.VideoWriter('test1.mp4', cv2.VideoWriter_fourcc(*'XVID'), 24.0, (w,h))
while True:
    key = cv2.waitKey(1) & 0xFF
    if key == ord('q'):
        break
    ret, frame = cap.read()
    cv2.imshow('frame', frame)
    out.write(frame)

out.release()
cap.release()
cv2.destroyAllWindows()

It works, but i want to make it write list of frames:

import cv2
w,h = 640,480
frames = []
cap = cv2.VideoCapture(0,cv2.CAP_DSHOW)
out = cv2.VideoWriter('test1.mp4', cv2.VideoWriter_fourcc(*'XVID'), 24.0, (w,h))
while True:
    key = cv2.waitKey(1) & 0xFF
    if key == ord('q'):
        break
    ret, frame = cap.read()
    cv2.imshow('frame', frame)
    frames.append(frame)

for frame in frames:
    out.write(frame)
out.release()
cap.release()
cv2.destroyAllWindows()

And this gives me a 4 kb file, that i can't open. What's wrong between cv2 and arrays?

I think that you lost the argument for out.write() .

for frame in frames:
    out.write(frame)
out.release()
cap.release()
cv2.destroyAllWindows()

Changing codec from 'XVID' to 'mp4v' seems to work

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM