Пример #1
0
 public void initVideo() {
   if (!isVideo) return;
   try {
     playerFactory = new MediaPlayerFactory(new String[] {"--no-video-title-show", "--noaudio"});
     player = playerFactory.newDirectMediaPlayer("RGBA", WIDTH, HEIGHT, WIDTH * DEPTH, this);
     player.prepareMedia(videoFile.getAbsolutePath());
   } catch (Throwable t) {
     isVideo = false;
     t.printStackTrace();
     Logger.global.log(Level.WARNING, "VLC failed to load :(");
   }
 }