java读取视频文件信息的两种方式(jave、ffmpeg)

2023-10-22 18:59

本文主要是介绍java读取视频文件信息的两种方式(jave、ffmpeg),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、通过Jave的方式读取文件信息
  1. 需要一个jar包
<!-- 获取视频时长等信息 --><dependency><groupId>jave</groupId><artifactId>jave</artifactId><version>1.0.2</version><scope>system</scope><systemPath>${project.basedir}/src/main/resources/libs/jave-1.0.2.jar</systemPath></dependency>

在这里插入图片描述
2. java代码实现

import it.sauronsoftware.jave.Encoder;
import it.sauronsoftware.jave.EncoderException;
import it.sauronsoftware.jave.MultimediaInfo;private void getVideoInfo(String filePath){File source = new File(filePath);Encoder encoder = new Encoder();try{MultimediaInfo mi = encoder.getInfo(source);System.out.println(mi.getVideo()); //视频信息System.out.println(mi.getAudio());  //音频信息String duration = LxTimeUtil.msecToTime(mi.getDuration());int width = mi.getVideo().getSize().getWidth();int height = mi.getVideo().getSize().getHeight();String format = mi.getFormat();int audioChannels = mi.getAudio().getChannels();String audioDecoder = mi.getAudio().getDecoder();int audioSamplingRate = mi.getAudio().getSamplingRate();String videoDecoder = mi.getVideo().getDecoder();float videoFrameRate = mi.getVideo().getFrameRate();System.out.println("★★★★★★★★★【"+source+"】★★★★★★★★★");System.out.println("格式:" + format);System.out.println("时长:" + duration);System.out.println("尺寸:" + width + "×" + height);System.out.println("音频编码:"+ audioDecoder);System.out.println("音频轨道:" + audioChannels);System.out.println("音频采样率:" + audioSamplingRate);System.out.println("视频编码:" + videoDecoder);System.out.println("视频帧率:" + videoFrameRate);//获取视频大小FileInputStream fis = new FileInputStream(source);FileChannel fc= null;fc= fis.getChannel();BigDecimal fileSize = new BigDecimal(fc.size());}catch (Exception e) {e.printStackTrace();} finally {if (null != fc) {try {fc.close();} catch (IOException e) {e.printStackTrace();}}}
}
二、通过ffmpeg的方式读取文件信息(项目中的webm视频格式通过jave解析不了,最终换成ffmpeg)
  1. 首先本地要下载ffmpeg
    http://www.ffmpeg.org/download.html
    在这里插入图片描述
  2. 随后在环境变量中配置ffmpeg
    在这里插入图片描述
    测试是否成功读取文件信息
    在这里插入图片描述
  3. java代码实现
    首先引入pom文件
<dependency><groupId>oro</groupId><artifactId>oro</artifactId><version>2.0.8</version></dependency><dependency><groupId>com.alibaba.druid</groupId><artifactId>druid-wrapper</artifactId><version>0.2.9</version></dependency>
import org.apache.commons.lang3.StringUtils;
import org.apache.oro.text.regex.*;import java.io.*;
import java.nio.channels.FileChannel;
import java.util.HashMap;
import java.util.List;
import java.util.Map;public static Map getEncodingFormat(String filePath) throws IOException {String cut = "ffmpeg -i "+ filePath;String command = "" + cut;System.out.println(command);Process process = Runtime.getRuntime().exec(new String[]{"sh", "-c", command});InputStream in = process.getErrorStream();BufferedReader br = new BufferedReader(new InputStreamReader(in));String line;StringBuffer sb = new StringBuffer();String fps = null;FileChannel fc = null;while ((line = br.readLine()) != null) {sb.append(line);if (line.contains("fps")) {String[] split = line.split(",");for (String d : split) {if (d.contains("fps")) {String[] split1 = d.split(" fps"); //提取视频文件的fpsfps = split1[0].trim();}}}continue;}String processFLVResult = sb.toString();Map retMap = new HashMap();retMap.put("fps", fps);if (org.apache.commons.lang3.StringUtils.isNotBlank(processFLVResult)) {PatternCompiler compiler = new Perl5Compiler();try {File source = new File(filePath);FileInputStream fis = new FileInputStream(source);fc = fis.getChannel();retMap.put("size", fc.size());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(processFLVResult, patternDuration)) {MatchResult re = matcherDuration.getMatch();retMap.put("提取出播放时间", re.group(1));String[] split = re.group(1).split(":");String s = split[0];Integer a = Integer.parseInt(s) * 60;String s1 = split[1];Integer a1 = Integer.parseInt(s1) * 60;Integer a2 = Integer.valueOf(split[2].split("\\.")[0]);Integer w = a + a1 + a2;retMap.put("duration", w);retMap.put("开始时间", re.group(2));retMap.put("bitrate", re.group(3));}Pattern patternVideo = compiler.compile(regexVideo, Perl5Compiler.CASE_INSENSITIVE_MASK);PatternMatcher matcherVideo = new Perl5Matcher();if (matcherVideo.contains(processFLVResult, patternVideo)) {MatchResult re = matcherVideo.getMatch();retMap.put("codec", re.group(1).split("\\(")[0].trim());retMap.put("format", re.group(2).split("\\(")[0]);retMap.put("width", re.group(3).split("x")[0]);retMap.put("height", re.group(3).split("x")[1]);}} catch (MalformedPatternException e) {e.printStackTrace();}finally {if (null!=fc){try {fc.close();} catch (IOException e) {e.printStackTrace();}}}}return retMap;}//linux方式下的读取方式 (因为项目是用docker部署的,所以读取的视频文件是在容器内部,所以得用这种方式读取)public static String processFLV(String filePath) {String cut1 = "ffmpeg -i "+ filePath;try {String command = "" + cut1;System.out.println(command);Process process = Runtime.getRuntime().exec(new String[]{"sh","-c",command});InputStream in = process.getErrorStream();BufferedReader br = new BufferedReader(new InputStreamReader(in));String line ;StringBuffer sb1 = new StringBuffer();while ((line = br.readLine()) != null) {sb1.append(line);if(line.contains("fps")){String[] split = line.split(",");for (String d : split) {if(d.contains("fps")){String[] split1 = d.split(" fps");String fps1 = split1[0];}}}continue;}System.out.println(sb1.toString());return sb1.toString();}catch (IOException e) {e.printStackTrace();return null;}}//windows环境下读取方式 public static String processFLVWin(String filePath) {//注意要保留单词之间有空格List commend = new java.util.ArrayList();commend.add("D:\\xbb\\ffmpeg-N-104863-g6cf55b9da2-win64-gpl-shared\\ffmpeg-N-104863-g6cf55b9da2-win64-gpl-shared\\bin\\ffmpeg.exe");//可以设置环境变量从而省去这行commend.add("ffmpeg");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) {System.out.println(line);sb.append(line);if(line.contains("fps")){String[] split = line.split(",");for (String d : split) {if(d.contains("fps")){String[] split1 = d.split(" fps");String fps = split1[0];}}}continue;}int ret = p.waitFor();return sb.toString();} catch (IOException | InterruptedException e) {e.printStackTrace();return null;}}

参考博客:https://www.cnblogs.com/xhy-shine/p/11820341.html

这篇关于java读取视频文件信息的两种方式(jave、ffmpeg)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/263038

相关文章

Spring Boot中WebSocket常用使用方法详解

《SpringBoot中WebSocket常用使用方法详解》本文从WebSocket的基础概念出发,详细介绍了SpringBoot集成WebSocket的步骤,并重点讲解了常用的使用方法,包括简单消... 目录一、WebSocket基础概念1.1 什么是WebSocket1.2 WebSocket与HTTP

SpringBoot+Docker+Graylog 如何让错误自动报警

《SpringBoot+Docker+Graylog如何让错误自动报警》SpringBoot默认使用SLF4J与Logback,支持多日志级别和配置方式,可输出到控制台、文件及远程服务器,集成ELK... 目录01 Spring Boot 默认日志框架解析02 Spring Boot 日志级别详解03 Sp

java中反射Reflection的4个作用详解

《java中反射Reflection的4个作用详解》反射Reflection是Java等编程语言中的一个重要特性,它允许程序在运行时进行自我检查和对内部成员(如字段、方法、类等)的操作,本文将详细介绍... 目录作用1、在运行时判断任意一个对象所属的类作用2、在运行时构造任意一个类的对象作用3、在运行时判断

java如何解压zip压缩包

《java如何解压zip压缩包》:本文主要介绍java如何解压zip压缩包问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Java解压zip压缩包实例代码结果如下总结java解压zip压缩包坐在旁边的小伙伴问我怎么用 java 将服务器上的压缩文件解压出来,

SpringBoot中SM2公钥加密、私钥解密的实现示例详解

《SpringBoot中SM2公钥加密、私钥解密的实现示例详解》本文介绍了如何在SpringBoot项目中实现SM2公钥加密和私钥解密的功能,通过使用Hutool库和BouncyCastle依赖,简化... 目录一、前言1、加密信息(示例)2、加密结果(示例)二、实现代码1、yml文件配置2、创建SM2工具

Spring WebFlux 与 WebClient 使用指南及最佳实践

《SpringWebFlux与WebClient使用指南及最佳实践》WebClient是SpringWebFlux模块提供的非阻塞、响应式HTTP客户端,基于ProjectReactor实现,... 目录Spring WebFlux 与 WebClient 使用指南1. WebClient 概述2. 核心依

Spring Boot @RestControllerAdvice全局异常处理最佳实践

《SpringBoot@RestControllerAdvice全局异常处理最佳实践》本文详解SpringBoot中通过@RestControllerAdvice实现全局异常处理,强调代码复用、统... 目录前言一、为什么要使用全局异常处理?二、核心注解解析1. @RestControllerAdvice2

Spring IoC 容器的使用详解(最新整理)

《SpringIoC容器的使用详解(最新整理)》文章介绍了Spring框架中的应用分层思想与IoC容器原理,通过分层解耦业务逻辑、数据访问等模块,IoC容器利用@Component注解管理Bean... 目录1. 应用分层2. IoC 的介绍3. IoC 容器的使用3.1. bean 的存储3.2. 方法注

Spring事务传播机制最佳实践

《Spring事务传播机制最佳实践》Spring的事务传播机制为我们提供了优雅的解决方案,本文将带您深入理解这一机制,掌握不同场景下的最佳实践,感兴趣的朋友一起看看吧... 目录1. 什么是事务传播行为2. Spring支持的七种事务传播行为2.1 REQUIRED(默认)2.2 SUPPORTS2

怎样通过分析GC日志来定位Java进程的内存问题

《怎样通过分析GC日志来定位Java进程的内存问题》:本文主要介绍怎样通过分析GC日志来定位Java进程的内存问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、GC 日志基础配置1. 启用详细 GC 日志2. 不同收集器的日志格式二、关键指标与分析维度1.