我必须在 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));
}
}