标签: python python-2.7 opencv tar
我有.tar个文件,其中包含.mp4个视频。我需要在PyQt4中通过OpenCV(v2.4.8)打开它们,而不将存档解压缩到文件系统。
.tar
.mp4
这里有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?)