今天就跟大家聊聊有關(guān)使用JavaCV怎么獲取視頻文件的時(shí)長(zhǎng),可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
長(zhǎng)興網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)公司,長(zhǎng)興網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為長(zhǎng)興數(shù)千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)公司要多少錢(qián),請(qǐng)找那個(gè)售后服務(wù)好的長(zhǎng)興做網(wǎng)站的公司定做!
1、做項(xiàng)目時(shí),需要讀取視頻文件的時(shí)長(zhǎng),網(wǎng)上有很多通過(guò)自己寫(xiě)的JNI接口來(lái)實(shí)現(xiàn),但由于項(xiàng)目使用了JavaCV和OpenCV,其中有一些處理視頻的接口,所以還是想打算盡可能使用JavaCV和OpenCV來(lái)實(shí)現(xiàn),經(jīng)過(guò)查閱了相關(guān)的一些資料,實(shí)現(xiàn)了使用JavaCV獲取視頻文件時(shí)長(zhǎng)的功能。
2、基本實(shí)現(xiàn)思路:獲取視頻的總幀數(shù)和每秒幀數(shù)(FPS),然后通過(guò)公式:視頻總幀數(shù)/每秒幀數(shù)(FPS)=時(shí)長(zhǎng)(單位秒)
3、實(shí)現(xiàn)代碼如下:
package com.duoduo.javacv.samples; import static com.googlecode.javacv.cpp.opencv_highgui.CV_CAP_PROP_FPS; import static com.googlecode.javacv.cpp.opencv_highgui.CV_CAP_PROP_FRAME_COUNT; import static com.googlecode.javacv.cpp.opencv_highgui.cvCreateFileCapture; import static com.googlecode.javacv.cpp.opencv_highgui.cvGetCaptureProperty; import static com.googlecode.javacv.cpp.opencv_highgui.cvReleaseCapture; import java.io.File; import com.googlecode.javacv.cpp.opencv_highgui.CvCapture; /** * 獲取視頻時(shí)長(zhǎng) * * @author chengesheng * @date 2013-5-22 下午11:15:25 * @note VideoFileLength */ public final class VideoFileLength { public static void main(String[] argus) { float len = getVideoFileLength("D:/J2EE/kdvp/webrtc/webapp/images/bike.avi"); System.out.println("Video length: " + len + " s"); } public static float getVideoFileLength(String fileName) { File file = new File(fileName); if (!file.exists()) { return 0; } float len = 0; CvCapture capture = cvCreateFileCapture(fileName); try { // 獲取視頻總幀數(shù) long frameCount =(long) cvGetCaptureProperty(capture, CV_CAP_PROP_FRAME_COUNT); // 獲取視頻每秒幀數(shù) long fps =(long) cvGetCaptureProperty(capture, CV_CAP_PROP_FPS); len = (float) frameCount / fps; } catch (Exception e) { e.printStackTrace(); } finally { cvReleaseCapture(capture); } return len; } }
看完上述內(nèi)容,你們對(duì)使用JavaCV怎么獲取視頻文件的時(shí)長(zhǎng)有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。