import cv2
fps = 20.0;
resolution =(640,480);
cap = cv2.VideoCapture(0);
fourcc = cv2.VideoWriter_fourcc(*'H264');
out = cv2.VideoWriter('test.avi',fourcc, fps, resolution);
while(cap.isOpened()):
ret, frame = cap.read()
if ret == True:
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
frame = cv2.flip(gray, 1)
out.write(frame)
cv2.imshow('frame',frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
else:
print("error")
break
cap.release()
out.release()
cv2.destroyAllWindows()
我想制作灰度视频。 喜欢' test.mp4' (h264编解码器)。 但是,不要玩。
并且,我想将分辨率更改为其他大小。 分辨率=(320,240); 另外,不要拯救...... 我不知道为什么...... 抱歉,不要说英语。