如何在java中将视频文件压缩为3gp或mp4?

时间:2012-08-03 09:40:45

标签: java

我有一个视频文件,我需要使用java转换为3gp,mp4。

有没有图书馆可以做这个或任何样本?

如果您有任何人已经知道或知道样本,请指导我做以上操作或提供示例。

感谢

4 个答案:

答案 0 :(得分:2)

如果必须使用Java,请检查Java Media Framework。

http://www.oracle.com/technetwork/java/javase/tech/index-jsp-140239.html

答案 1 :(得分:1)

使用ffmpegffmpeg.org)或mconvert(来自MPlayer)或VLC等工具。您可以使用ProcessBuilderCommons Exec

从Java中调用它们

答案 2 :(得分:1)

您可能会看pandastream。但它是一种网络服务。

答案 3 :(得分:0)

在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");
    }