java 做视频转换主要用到开源的ffmpeg或者mencoder,还要有MP4Box。
注:由于平时都没有时间写博客,所以思路我就不写了,有问题问我,不一定马上回复。
详细介绍:
ffmpeg:http://www.ffmpeg.org/
mencoder:http://en.wikipedia.org/wiki/MEncoder
MP4Box:http://gpac.wp.mines-telecom.fr/mp4box/mp4box-documentation/
主要实现:
1.获取视频元数据信息
2.视频相互转换
3.视频加文字及图片水印
4.视频截图
思路:
配置文件中定义各转换工具的路径:(相关工具去官网下载)
-
-
-
- <param name="ffmpegPath" value="D:\conver\ffmpeg-win.exe" />
-
-
- <param name="mencoderPath" value="D:\conver\mencoder.exe" />
-
-
- <param name="shellPath" value="D:\conver\coverVideo.bat" />
-
-
- <param name="mp4BoxPath" value="D:\conver\MP4Box" />
-
-
- <param name="imgConverPath" value="C:/Program Files/ImageMagick-6.3.9-Q16/convert.exe" />
-
-
2.获取视频音频的各项属性帮助类
- import java.io.BufferedReader;
- import java.io.InputStreamReader;
- import java.util.List;
-
- import org.apache.commons.lang.StringUtils;
- import org.apache.log4j.Logger;
- import org.apache.oro.text.regex.MalformedPatternException;
- import org.apache.oro.text.regex.MatchResult;
- import org.apache.oro.text.regex.Pattern;
- import org.apache.oro.text.regex.PatternCompiler;
- import org.apache.oro.text.regex.PatternMatcher;
- import org.apache.oro.text.regex.Perl5Compiler;
- import org.apache.oro.text.regex.Perl5Matcher;
- import com.brainsoon.bsrcm.common.utils.BaseCommonUtil;
- import com.brainsoon.bsrcm.system.support.CacConver;
-
-
-
-
-
-
-
- public class VideoInfoHelps {
-
- protected static final Logger logger = Logger.getLogger(VideoInfoHelps.class);
-
- public static final String ffmpegPath;
-
- static{
- ffmpegPath = BaseCommonUtil.getProRealPath("ffmpegPath");
- }
-
-
-
-
-
-
-
- public static VideoInfo getVideoInfo(String videoPath) {
- VideoInfo videoInfo = new VideoInfo();
- if(CacConver.exitFile(videoPath)){
- String videoType = videoPath.substring(videoPath.lastIndexOf(".")+1, videoPath.length());
- if(CacConver.isNeedVideoFormat(videoType)){
- String result = processVideo(videoPath);
- if(StringUtils.isNotEmpty(result)){
- PatternCompiler compiler =new Perl5Compiler();
- try {
- String regexDuration ="Duration: (.*?), start: (.*?), bitrate: (\\d*) kb\\/s";
- String regexVideo ="Video: (.*?), (.*?), (.*?)[,\\s]";
- String regexAudio ="Audio: (\\w*), (\\d*) Hz";
-
- Pattern patternDuration = compiler.compile(regexDuration,Perl5Compiler.CASE_INSENSITIVE_MASK);
- PatternMatcher matcherDuration = new Perl5Matcher();
- if(matcherDuration.contains(result, patternDuration)){
- MatchResult re = matcherDuration.getMatch();
-
- videoInfo.setPlayingAllTime( re.group(1));
-
- videoInfo.setPlayingStartTime( re.group(2));
-
- videoInfo.setBitrateSize( re.group(3));
- }
-
- Pattern patternVideo = compiler.compile(regexVideo,Perl5Compiler.CASE_INSENSITIVE_MASK);
- PatternMatcher matcherVideo = new Perl5Matcher();
-
- if(matcherVideo.contains(result, patternVideo)){
- MatchResult re = matcherVideo.getMatch();
-
- videoInfo.setCodeFormat( re.group(1));
-
- videoInfo.setVideoFormat( re.group(2));
-
- videoInfo.setResolution( re.group(3));
- }
-
- Pattern patternAudio = compiler.compile(regexAudio,Perl5Compiler.CASE_INSENSITIVE_MASK);
- PatternMatcher matcherAudio = new Perl5Matcher();
-
- if(matcherAudio.contains(result, patternAudio)){
- MatchResult re = matcherAudio.getMatch();
-
- videoInfo.setAudioCoding(re.group(1));
-
- videoInfo.setAudioFrequency( re.group(2));
- }
- } catch (MalformedPatternException e) {
- logger.error("获取【" + videoPath +"】视频信息失败!");
- }
-
- logger.info("获取【" + videoPath +"】视频信息成功!");
- }else{
- logger.info("执行成功!但未获取到【" + videoPath +"】视频信息!");
- }
- }else{
- logger.debug("【" + videoPath + "】文件格式不支持!");
- }
- }
-
- return videoInfo ;
- }
-
-
-
-
-
-
-
- private static String processVideo(String filePath) {
- List<String> commend=new java.util.ArrayList<String>();
- commend.add(ffmpegPath);
- commend.add("-i");
- commend.add(filePath);
- try {
- ProcessBuilder builder = new ProcessBuilder();
- builder.command(commend);
- builder.redirectErrorStream(true);
- Process p= builder.start();
- BufferedReader buf = null;
- String line = null;
- buf = new BufferedReader(new InputStreamReader(p.getInputStream()));
- StringBuffer sb= new StringBuffer();
- while ((line = buf.readLine()) != null) {
- sb.append(line);
- continue;
- }
- p.waitFor();
- return sb.toString();
- } catch (Exception e) {
- logger.error("ffmpeg解析视频文件【" + filePath +"】失败!");
- return null;
- }
- }
-
- }
3.其他的工具类
java 实现视频转换通用工具类:获取视频元数据信息(一),布布扣,bubuko.com
java 实现视频转换通用工具类:获取视频元数据信息(一)
原文:http://www.cnblogs.com/zhwl/p/3645589.html