欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

OpenCV获取视频文件时长

程序员文章站 2022-05-16 14:18:09
...
#include "opencv2/opencv.hpp"
using namespace cv;

VideoCapture capture(“d:/test.mp4”);
if (!capture.isOpened())
{
    return;
}

// 时长计算
int iVideoTime = capture.get(CV_CAP_PROP_FRAME_COUNT) / capture.get(CV_CAP_PROP_FPS);

 

相关标签: C++ Qt