これは私のビデオです
これはfpsを見つけるスクリプトです。
_import cv2
if __name__ == '__main__' :
video = cv2.VideoCapture("test.mp4");
# Find OpenCV version
(major_ver, minor_ver, subminor_ver) = (cv2.__version__).split('.')
if int(major_ver) < 3 :
fps = video.get(cv2.cv.CV_CAP_PROP_FPS)
print "Frames per second using video.get(cv2.cv.CV_CAP_PROP_FPS): {0}".format(fps)
else :
fps = video.get(cv2.CAP_PROP_FPS)
print "Frames per second using video.get(cv2.CAP_PROP_FPS) : {0}".format(fps)
video.release();
_
これは、このビデオのスクリプトの出力です:Frames per second using video.get(cv2.CAP_PROP_FPS) : 0.0
なぜ0.0を返すのですか? FPSは14.0です
実行中pip install python-opencv
問題が修正され、FPSが正しく検出されます。