我能够读取编码为mjpeg的avi文件,但不幸的是,当编码的情况是mpeg4时,我无法成功。你的任何帮助将是非常有帮助的,值得赞赏。 这是我的代码片段:
while(cap.isOpened()):
ret, frame = cap.read()
if ret:
frame=cv2.resize(frame(img_rows,img_cols),interpolation=cv2.INTER_AREA)
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
frames.append(gray)
cv2.imshow('frame',gray)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
cv2.destroyAllWindows()
答案 0 :(得分:0)
为ubuntu / raspbian安装以下库
sudo apt-get install ffmpeg
或者如果您是centos用户,请安装以下库
sudo yum install ffmpeg