문제

How to find out the frame rate of a video ?How to do in C++ OpenCV?

I want to read the different number of video with respective of frames per second.

It has to work on all Video formats? .Avi, .MP4, .Flv

도움이 되었습니까?

해결책

easy (just take with a grain of salt, see remarks below):

VideoCapture cap("ma.avi");
double fps = cap.get(CV_CAP_PROP_FPS);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top