javacv视频截图

简介: 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_34173549/article/details/82083894 package com.
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_34173549/article/details/82083894
package com.repast.core.tool;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
 
import javax.imageio.ImageIO;
 
import org.bytedeco.javacpp.opencv_core;
import org.bytedeco.javacpp.opencv_core.IplImage;
import org.bytedeco.javacv.FFmpegFrameGrabber;
import org.bytedeco.javacv.Frame;
import org.bytedeco.javacv.FrameGrabber.Exception;
import org.bytedeco.javacv.Java2DFrameConverter;
import org.bytedeco.javacv.OpenCVFrameConverter;
 /**
  * javacv 
  * @author 周海峰
  *
  */
public  class FrameGrabberKit {
    public static void main(String[] args) throws Exception {
    	System.out.println(System.getProperty("java.library.path"));
    	try {
			fetchFrame("D:/video/aa.mp4", "D:/new/aa.jpg");
		} catch (IOException e) {
			e.printStackTrace();
		}
    }
 
    /**
     * 获取指定视频的帧并保存为图片至指定目录
     * @param videofile  源视频文件路径
     * @param framefile  截取帧的图片存放路径
     * @throws Exception
     * @throws IOException 
     */
    public static void fetchFrame(String videofile, String framefile)
            throws Exception, IOException {
        FFmpegFrameGrabber ff = new FFmpegFrameGrabber(videofile); 
        ff.start();
        ff.getAudioChannels();
        String rotate =ff.getVideoMetadata("rotate");//视频的旋转角度
        int lenght = ff.getLengthInFrames();
        int i = 0;
        Frame f = null;
        while (i < lenght) {
            // 过滤前5帧,避免出现全黑的图片,依自己情况而定
            f = ff.grabFrame();
            if ((i > 5) && (f.image != null)) {
            	break;
            }
            IplImage src = null;
                if(null !=rotate &&rotate.length() > 1) {
                    OpenCVFrameConverter.ToIplImage converter =new OpenCVFrameConverter.ToIplImage();
                        src =converter.convert(f);
                        f =converter.convert(rotate(src, Integer.valueOf(rotate)));
                    }
                doExecuteFrame(f, framefile);
            i++;
        }
        
    }
    
    
    public static IplImage rotate(IplImage src,int angle) {
        IplImage img = IplImage.create(src.height(),src.width(),src.depth(),src.nChannels());
        opencv_core.cvTranspose(src,img);
        opencv_core.cvFlip(img,img,angle);
        return img;
    }
    
    
    public static void doExecuteFrame(Frame f,String targetFileName) {
        if (null ==f ||null ==f.image) {
            return;
        }
        Java2DFrameConverter converter =new Java2DFrameConverter();
        BufferedImage bi =converter.getBufferedImage(f);
        File output =new File(targetFileName);
        try {
            ImageIO.write(bi,"jpg",output);
        }catch (IOException e) {
            e.printStackTrace();
        }
    }
 
}
<dependency>
            <groupId>org.bytedeco</groupId>
            <artifactId>javacv-platform</artifactId>
            <version>1.3.1</version>
        </dependency>

 

相关文章
|
24天前
|
Java
java通过commons-fileupload实现多张图片的上传(servlet)
java通过commons-fileupload实现多张图片的上传(servlet)
23 2
|
JSON easyexcel Java
EasyExcel的简单使用
EasyExcel的简单使用,以及如何通过postman进行导入导出功能的调试
1189 1
|
算法 Java TensorFlow
JavaCV 实现图片中人脸检测完整代码教程
JavaCV 实现图片中人脸检测完整代码教程
246 0
JavaCV 实现图片中人脸检测完整代码教程
27.用zxing生成二维码
27.用zxing生成二维码
182 0
IntelliJ IDEA - JRebel ERROR org.zeroturnaround.bundled.javassist.CannotCompileException
IntelliJ IDEA - JRebel ERROR org.zeroturnaround.bundled.javassist.CannotCompileException
105 0
|
SQL 设计模式 缓存
还在用 POI?试试 EasyExcel,轻松导出 100W 数据,不卡死,好用到爆!
还在用 POI?试试 EasyExcel,轻松导出 100W 数据,不卡死,好用到爆!
1160 0
|
关系型数据库 MySQL
jfinal文件上传
jfinal文件上传
113 0
|
XML 前端开发 Java
JFinal上手demo(1)
JFinal上手demo
119 0
JFinal上手demo(1)
|
SQL 前端开发 JavaScript
JFinal上手demo(2)
JFinal上手demo
117 0
JFinal上手demo(2)