Hi i use this code to record from webcam for 10 sec:
import cv2
camera = cv2.VideoCapture(10)
return_value, video = camera.read()
cv2.imwrite('hello'+'.mp4', video)
del(camera)
But i got this error:
Traceback (most recent call last):
File "K:.D U T Ywebcam videomain.py", line 5, in <module>
cv2.imwrite('hello'+'.mp4', video)
cv2.error: OpenCV(4.5.1) C:UsersappveyorAppDataLocalTemp1pip-req-build-hhhrywxdopencvmodulesimgcodecssrcloadsave.cpp:753: error: (-215:Assertion failed) !_img.empty() in function 'cv::imwrite'
I do not know what should i do to debug
question from:
https://stackoverflow.com/questions/66059894/record-video-from-webcam-by-python-and-cv2 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…