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

相关文章

Java Jackson核心注解使用详解

《JavaJackson核心注解使用详解》:本文主要介绍JavaJackson核心注解的使用,​​Jackson核心注解​​用于控制Java对象与JSON之间的序列化、反序列化行为,简化字段映射... 目录前言一、@jsonProperty-指定JSON字段名二、@JsonIgnore-忽略字段三、@Jso

Spring Validation中9个数据校验工具使用指南

《SpringValidation中9个数据校验工具使用指南》SpringValidation作为Spring生态系统的重要组成部分,提供了一套强大而灵活的数据校验机制,本文给大家介绍了Spring... 目录1. Bean Validation基础注解常用注解示例在控制器中应用2. 自定义约束验证器定义自

Android NDK版本迭代与FFmpeg交叉编译完全指南

《AndroidNDK版本迭代与FFmpeg交叉编译完全指南》在Android开发中,使用NDK进行原生代码开发是一项常见需求,特别是当我们需要集成FFmpeg这样的多媒体处理库时,本文将深入分析A... 目录一、android NDK版本迭代分界线二、FFmpeg交叉编译关键注意事项三、完整编译脚本示例四

Java对接Dify API接口的完整流程

《Java对接DifyAPI接口的完整流程》Dify是一款AI应用开发平台,提供多种自然语言处理能力,通过调用Dify开放API,开发者可以快速集成智能对话、文本生成等功能到自己的Java应用中,本... 目录Java对接Dify API接口完整指南一、Dify API简介二、准备工作三、基础对接实现1.

9个SpringBoot中的自带实用过滤器使用详解

《9个SpringBoot中的自带实用过滤器使用详解》在SpringBoot应用中,过滤器(Filter)是处理HTTP请求和响应的重要组件,SpringBoot自带了许多实用的过滤器,如字符编码,跨... 目录1. CharacterEncodingFilter - 字符编码过滤器功能和配置手动配置示例2

Spring Boot Controller处理HTTP请求体的方法

《SpringBootController处理HTTP请求体的方法》SpringBoot提供了强大的机制来处理不同Content-Type​的HTTP请求体,这主要依赖于HttpMessageCo... 目录一、核心机制:HttpMessageConverter​二、按Content-Type​处理详解1.

Spring Boot 常用注解详解与使用最佳实践建议

《SpringBoot常用注解详解与使用最佳实践建议》:本文主要介绍SpringBoot常用注解详解与使用最佳实践建议,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要... 目录一、核心启动注解1. @SpringBootApplication2. @EnableAutoConfi

SpringIOC容器Bean初始化和销毁回调方式

《SpringIOC容器Bean初始化和销毁回调方式》:本文主要介绍SpringIOC容器Bean初始化和销毁回调方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐... 目录前言1.@Bean指定初始化和销毁方法2.实现接口3.使用jsR250总结前言Spring Bea

Android与iOS设备MAC地址生成原理及Java实现详解

《Android与iOS设备MAC地址生成原理及Java实现详解》在无线网络通信中,MAC(MediaAccessControl)地址是设备的唯一网络标识符,本文主要介绍了Android与iOS设备M... 目录引言1. MAC地址基础1.1 MAC地址的组成1.2 MAC地址的分类2. android与I

Springboot实现推荐系统的协同过滤算法

《Springboot实现推荐系统的协同过滤算法》协同过滤算法是一种在推荐系统中广泛使用的算法,用于预测用户对物品(如商品、电影、音乐等)的偏好,从而实现个性化推荐,下面给大家介绍Springboot... 目录前言基本原理 算法分类 计算方法应用场景 代码实现 前言协同过滤算法(Collaborativ