1

我必须在 Java/OpenGL 应用程序中播放相当大的视频,在某些情况下是超高清 (4000x2000)。我现在在 VLCJ 中解决了这个问题(无法让 GStreamer 解码得足够快)。在使用普通嵌入式播放器时,VLC 本身就像 VLCJ 一样播放视频。

当我使用 directplayer 时,较大的视频开始播放并在几帧后停止,或者根本不开始(仍然调用 display(),但总是使用相同的帧!)。对我来说,从 HDReady(1280x720 仍然可以正常播放)和 FullHD(1920x1080)之间开始。这似乎不依赖于 PC 的性能。我在一台使用了 5 年的笔记本电脑和一台高端机器上对此进行了测试,结果完全相同。如果我做错了什么或者 VLCJ DirectPlayer 无法处理更大的视频,有什么想法吗?

我正在使用来自 github 的最新 VLCJ 的 VLC 2.0.0(也尝试过 2.0.3 和 2.0.4)。

我有一个在线登录:http: //pastebin.com/UeyMrVmW

我附上了一个简单的例子,我如何设置直接播放器来重现问题。

public class VLCTestPlayer implements RenderCallback, BufferFormatCallback {

protected MediaPlayerFactory mediaPlayerFactory;

protected DirectMediaPlayer mediaPlayer;

public static void main(final String[] args) {
    NativeLibrary.addSearchPath("libvlc",
            "C:\\Program Files (x86)\\VideoLAN\\VLC");
    SwingUtilities.invokeLater(new Runnable() {
        @Override
        public void run() {
            VLCTestPlayer testplayer = new VLCTestPlayer(args);
        }
    });
}

private VLCTestPlayer(String[] args) {

    JFrame frame = new JFrame("vlcj Tutorial");

    mediaPlayerFactory = new MediaPlayerFactory("--no-video-title-show", "--verbose=3");

    mediaPlayer = mediaPlayerFactory.newDirectMediaPlayer(this, this);

    String videoFile = "myVideo.mp4";
    boolean started = mediaPlayer.prepareMedia(videoFile);

    if (started)
        mediaPlayer.play();
    System.out.println("Video started: " + started + " from: " + videoFile);

    frame.setLocation(100, 100);
    frame.setSize(1050, 600);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
}

@Override
public BufferFormat getBufferFormat(int sourceWidth, int sourceHeight) {
    sourceWidth = sourceWidth / 1;
    sourceHeight = sourceHeight / 1;
    System.out.println("Got VideoFormat: " + sourceWidth + "x"
            + sourceHeight);
    BufferFormat format = new BufferFormat("RGBA", sourceWidth,
            sourceHeight, new int[] { sourceWidth * 4 },
            new int[] { sourceHeight });

    return format;
}

@Override
public void display(DirectMediaPlayer mediaPlayer, Memory[] nativeBuffers,
        BufferFormat bufferFormat) {

    ByteBuffer buffer = nativeBuffers[0].getByteBuffer(0,
            (int) bufferFormat.getWidth() * (int) bufferFormat.getHeight()
                    * 4);
    int pos = 4 * ((int) bufferFormat.getWidth()
            * (int) bufferFormat.getHeight() / 2 + (int) bufferFormat
            .getWidth() / 2) + 700;
    System.out.println("Got VideoFrame: " + buffer.get(pos) + ":"
            + buffer.get(pos + 1) + ":" + buffer.get(pos + 2) + ":"
            + buffer.get(pos + 3));
}
}
4

1 回答 1

1

尽管您进行了测试,但我想说这几乎肯定是一个性能问题-根据我的经验,即使在现代系统上使用直接播放器播放高清视频,您在其中所做的方式也无法正常工作,如果没有硬件加速,它将无法应对. 作为粗略的指南,我 6 个月大的 i5 台式机几乎无法管理 720p 视频。(附带说明一下,您在其中的 println 语句肯定无济于事,当每秒执行多次时,它们可能会花费比您想象的更多的时间。)

但是,可取之处在于您应该能够使用 JavaFX 和它提供的硬件加速类来使其工作 - 请参阅此处了解详细信息。

于 2012-11-15T16:18:30.997 回答