if(moviePlayer == null){
try {
System.out.println("s");
moviePlayer = Manager.createPlayer(this.getClass().getResource("videos/intro.avi"));
moviePlayer.start();
} catch (IOException e) {
e.printStackTrace();
} catch (NoPlayerException e) {
e.printStackTrace();
}
}
I have that code, but when I run my program I see a white blank screen.
I’m using a JPanel and a JFrame with a resolution of 800x600.
I cheked to see that the video was working with the JMStudio.
