0

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

有没有图书馆可以做到这一点或任何样本?

如果你们中的任何人已经完成或知道示例,请指导我执行上述操作或提供示例。

谢谢

4

4 回答 4

2

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

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

于 2012-08-03T11:14:43.253 回答
1

使用ffmpegffmpeg.org)或mconvert(来自MPlayer)或VLC之类的工具。ProcessBuilder您可以使用或Commons Exec从 Java 调用它们。

于 2012-08-03T09:46:05.317 回答
1

你可能看过pandastream。但它是一个网络服务。

于 2012-08-03T09:53:39.163 回答
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");
    }
于 2021-04-26T07:50:21.437 回答