本文实例讲述了Java实现对视频进行截图的方法。分享给大家供大家参考,具体如下:
之前介绍过Java使用ffmpeg进行视频转换,这里演示一下ffmpeg进行视频截图的方法。
具体代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
import java.io.File;
import java.util.List;
//生成视频文件的首帧为图片
//windows下的版本
public class CreatePh {
// public static final String FFMPEG_PATH = "E:/ffmpeg/ffmpeg.exe";
public static boolean processImg(String veido_path, String ffmpeg_path) {
File file = new File(veido_path);
if (!file.exists()) {
System.err.println( "路径[" + veido_path + "]对应的视频文件不存在!" );
return false ;
}
List<String> commands = new java.util.ArrayList<String>();
commands.add(ffmpeg_path);
commands.add( "-i" );
commands.add(veido_path);
commands.add( "-y" );
commands.add( "-f" );
commands.add( "image2" );
commands.add( "-ss" );
commands.add( "8" ); // 这个参数是设置截取视频多少秒时的画面
// commands.add("-t");
// commands.add("0.001");
commands.add( "-s" );
commands.add( "700x525" );
commands.add(veido_path.substring( 0 , veido_path.lastIndexOf( "." ))
.replaceFirst( "vedio" , "file" ) + ".jpg" );
try {
ProcessBuilder builder = new ProcessBuilder();
builder.command(commands);
builder.start();
System.out.println( "截取成功" );
return true ;
} catch (Exception e) {
e.printStackTrace();
return false ;
}
}
public static void main(String[] args) {
processImg( "C:/video1.avi" , "C:/ffmpeg.exe" );
}
}
|
运行后的截图如下:
附:
ffmpeg.exe点击此处本站下载。
测试用avi格式视频点击此处本站下载。
希望本文所述对大家java程序设计有所帮助。
原文链接:http://blog.csdn.net/yangnianbing110/article/details/33738469