python cv2从存档中读取视频

时间:2016-07-29 10:08:34

标签: python python-2.7 opencv tar

我有.tar个文件,其中包含.mp4个视频。我需要在PyQt4中通过OpenCV(v2.4.8)打开它们,而不将存档解压缩到文件系统。

这里有reading images from tar

的解决方案

实例:

import cv2
import numpy as np
import tarfile

tar0 = tarfile.open('files.tar')
fileg = tar0.extractfile('1.mp4')#  (may be convert fileg to VideoCapture?)

0 个答案:

没有答案