如何使用Java将ogv视频文件转换为Mp4视频格式

时间:2016-01-25 09:49:14

标签: java video ffmpeg

我需要将OGV视频格式转换为MP4视频格式。

  • 我使用下面的Java代码将MP4 VIDEO格式转换为OGV VIDEO格式它工作正常。
  • 对于MP4格式,我使用audio.setCodec(“AudioAttributes.DIRECT_STREAM_COPY”)和video.setCodec(“VideoAttributes.DIRECT_STREAM_COPY”)。
  • 但如果我通过更改audio.setCodec(“libvorbis”)和video.setCodec(“mpeg4”)来使用相同的代码,则不会将其从Ogv转换为Mp4格式。我也在我的示例程序中尝试了一些编解码器。

  • 我无法从Ogv转换为Mp4格式。

public class VideoConvert {
    public static void main(String[] args) throws IOException {
    File source = new File("D:\\readxml\\videoConvertorProject\\MP4toOGV\\mp4\\Sample1.ogv");
    File target = new File("D:\\readxml\\videoConvertorProject\\MP4toOGV\\ogv\\Sample2.mp4");
    AudioAttributes audio = new AudioAttributes();
    //audio.setCodec("libvorbis");
    audio.setCodec("libfaac");
    //audio.setCodec("libmp3lame");
    //audio.setCodec(AudioAttributes.DIRECT_STREAM_COPY);
    audio.setBitRate(new Integer(128000));
    audio.setSamplingRate(new Integer(44100));
    audio.setChannels(new Integer(2));
    VideoAttributes video = new VideoAttributes();
    video.setBitRate(new Integer(160000));
    video.setFrameRate(new Integer(15));
    //video.setSize(new VideoSize(176, 144));
    //video.setCodec("libtheora");
    video.setCodec("mpeg4");
    //video.setCodec(VideoAttributes.DIRECT_STREAM_COPY);
    EncodingAttributes attrs = new EncodingAttributes();
    attrs.setFormat("mp4");
    attrs.setAudioAttributes(audio);
    attrs.setVideoAttributes(video);
    Encoder encoder = new Encoder();
    try {
        encoder.encode(source, target, attrs);
    } catch (IllegalArgumentException e) {
        e.printStackTrace();
    } catch (InputFormatException e) {
        e.printStackTrace();
    } catch (EncoderException e) {
        e.printStackTrace();
    }
}

2 个答案:

答案 0 :(得分:3)

我想,你是JAVE(Java音频视频编码器)库,所以我更改了setCodec AudioAttributes.DIRECT_STREAM_COPY

public class VideoConvert {
public static void main(String[] args) throws IOException {
File source = new File("D:\\video\\mp4\\Sample.ogv");
File target = new File("D:\\video\\ogv\\Sample.mp4");
AudioAttributes audio = new AudioAttributes();
audio.setCodec(AudioAttributes.DIRECT_STREAM_COPY);
audio.setBitRate(new Integer(128000));
audio.setSamplingRate(new Integer(44100));
audio.setChannels(new Integer(2));
VideoAttributes video = new VideoAttributes();
video.setBitRate(new Integer(160000));
video.setFrameRate(new Integer(15));
video.setCodec("mpeg4");
video.setCodec(VideoAttributes.DIRECT_STREAM_COPY);
EncodingAttributes attrs = new EncodingAttributes();
attrs.setFormat("mp4");
attrs.setAudioAttributes(audio);
attrs.setVideoAttributes(video);
Encoder encoder = new Encoder();
try {
    encoder.encode(source, target, attrs);
} catch (IllegalArgumentException e) {
    e.printStackTrace();
} catch (InputFormatException e) {
    e.printStackTrace();
} catch (EncoderException e) {
    e.printStackTrace();
}

}

答案 1 :(得分:1)

我不完全确定您使用的是哪个库,但MPEG-4容器格式支持许多不同的视频和音频编解码器。

我看到libfaac的音频,这让我假设你正在使用基于ffmpeg的东西。

对于视频,您可能需要H.264 / MPEG-4 AVC,在这种情况下,您将libx264用作视频编码器。我之前从未见过mpeg4视频编码格式。