我有一个视频文件,我需要使用 java 将其转换为 3gp、mp4。
有没有图书馆可以做到这一点或任何样本?
如果你们中的任何人已经完成或知道示例,请指导我执行上述操作或提供示例。
谢谢
我有一个视频文件,我需要使用 java 将其转换为 3gp、mp4。
有没有图书馆可以做到这一点或任何样本?
如果你们中的任何人已经完成或知道示例,请指导我执行上述操作或提供示例。
谢谢
如果您必须使用 Java,请检查 Java Media Framework。
http://www.oracle.com/technetwork/java/javase/tech/index-jsp-140239.html
使用ffmpeg
(ffmpeg.org)或mconvert
(来自MPlayer)或VLC之类的工具。ProcessBuilder
您可以使用或Commons Exec从 Java 调用它们。
你可能看过pandastream。但它是一个网络服务。
在java中压缩视频你可以使用IVCompressor非常容易使用
更多细节去https://techgnious.github.io/IVCompressor/
简单的代码
<dependency>
<groupId>io.github.techgnious</groupId>
<artifactId>IVCompressor</artifactId>
<version>1.0.1</version>
</dependency>
public static void main(String[] args) throws VideoException, IOException {
IVCompressor compressor = new IVCompressor();
IVSize customRes = new IVSize();
customRes.setWidth(400);
customRes.setHeight(300);
File file = new File("D:/Testing/20.mp4");
compressor.reduceVideoSizeAndSaveToAPath(file,VideoFormats.MP4,ResizeResolution.R480P,"D:/Testing/Custome");
}