Help - Search - Members - Calendar
Full Version: Java And vids
4peeps.com Forums > General Hardware/Software > Programmers Corner
Kingbob
anyone know the coding for opening a mpeg in a java file
or
anyone know code for opening media player to play the vid?
Mandark
http://www.javaworld.com/javaworld/jw-04-1.../jw-04-jmf.html

CODE
Player myPlayer = Manager.createPlayer(myURL);



public synchronized void blockingRealize() {

  myPlayer.realize();

  while (!realized) {

     try {

        wait();

     } catch (java.lang.InterruptedException e) {

        status.setText("Interrupted while waiting on realize...exiting.");

        System.exit(1);

     }

  }

}



public synchronized void controllerUpdate (ControllerEvent event) {

   if (event instanceof RealizeCompleteEvent) {

      realized = true;

      notify();

   } else if (event instanceof EndOfMediaEvent) {

      eomReached = true;

   }

}
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2009 Invision Power Services, Inc.