web-dev-qa-db-ja.com

Python OpenCV video.get(cv2.CAP_PROP_FPS)は0.0 FPSを返します

これは私のビデオです

enter image description here

これは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です

7
Tasos

実行中pip install python-opencv問題が修正され、FPSが正しく検出されます。

3
Tasos