java wrapper怎么运行,使用java-ffmpeg wrapper,或者简单的使用java运行时来执行ffmpeg?...

I'm pretty new to Java, need to write a program that listen to video conversion instructions and convert the video once an new instruction arrives (instructions is stored in Amazon SQS, but it's irrelevant to my question)

I'm facing a choice, either use Java RunTime to exec 'ffmpeg' conversion (like from command line), or I can use a ffmpeg wrapper written inJava http://fmj-sf.net/ffmpeg-java/getting_started.php

I'd much prefer using Java Runtime to exec ffmpeg directly, and avoid using java-ffmpeg wrapper as I have to learn the library. so my question is are there any benefits using java-ffmpeg wrapper over exec ffmpeg directly using Runtime? I don't need ffmpeg to play videos, just convert videos

Thanks

解决方案

If I'm not mistaken, the "ffmpeg wrapper" project you linked to is out of date and not maintained. ffmpeg is a very active project, lot's of changes and releases all the time.

You should look at the Xuggler project, this provides a Java API for what you want to do, and they have tight integration with ffmpeg.

Should you choose to go down the Runtime.exec() path, this Red5 thread should be useful:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
引入 jaffree 或者 ffmpeg-cli-wrapper 这两个 FFmpegJava 封装库,可以让我们在 Java 项目中使用 FFmpeg 命令行工具,实现音视频的处理和转码等操作。 下面以 Maven 项目为例,介绍如何引入这两个库。 1. 引入 jaffree 在 pom.xml 文件中添加以下依赖: ```xml <dependency> <groupId>com.github.kokorin.jaffree</groupId> <artifactId>jaffree</artifactId> <version>1.0.0</version> </dependency> ``` 2. 引入 ffmpeg-cli-wrapper 在 pom.xml 文件中添加以下依赖: ```xml <dependency> <groupId>com.github.bramp.ffmpeg</groupId> <artifactId>ffmpeg-cli-wrapper</artifactId> <version>0.6.2</version> </dependency> ``` 引入 jaffree 或者 ffmpeg-cli-wrapper 后,就可以在 Java 代码中调用 FFmpeg 命令行工具了。例如,使用 jaffree 裁剪视频: ```java FFmpeg.atPath("/path/to/ffmpeg") .addInput("/path/to/input.mp4") .addOutput(UrlOutput.toPath("/path/to/output.mp4") .setStartOffset(Duration.ofSeconds(10)) .setDuration(Duration.ofSeconds(20))) .execute(); ``` 使用 ffmpeg-cli-wrapper 裁剪视频: ```java FFmpeg ffmpeg = new FFmpeg("/path/to/ffmpeg"); FFprobe ffprobe = new FFprobe("/path/to/ffprobe"); FFmpegBuilder builder = new FFmpegBuilder() .setInput("/path/to/input.mp4") .overrideOutputFiles(true) .addOutput("/path/to/output.mp4") .setStartOffset(10, TimeUnit.SECONDS) .setDuration(20, TimeUnit.SECONDS) .done(); FFmpegExecutor executor = new FFmpegExecutor(ffmpeg, ffprobe); executor.createJob(builder).run(); ``` 以上是在 Maven 项目中引入 jaffree 和 ffmpeg-cli-wrapper 的方法,如果是其他类型的项目,可以根据具体情况进行修改。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值