// Fig 21.6: MediaPanel.java // A JPanel the plays media from a URL import java.awt.BorderLayout; import java.awt.Component; import java.io.IOException; import java.net.URL; import javax.media.CannotRealizeException; import javax.media.Manager; import javax.media.NoPlayerException; import javax.media.Player; import javax.swing.JPanel; public class MediaPanel extends JPanel { public MediaPanel( URL mediaURL ) { setLayout( new BorderLayout() ); // use a BorderLayout // Use lightweight components for Swing compatibility Manager.setHint( Manager.LIGHTWEIGHT_RENDERER, true ); try { // create a player to play the media specified in the URL Player mediaPlayer = Manager.createRealizedPlayer( mediaURL ); // get the components for the video and the playback controls Component video = mediaPlayer.getVisualComponent(); Component controls = mediaPlayer.getControlPanelComponent(); if ( video != null ) add( video, BorderLayout.CENTER ); // add video component if ( controls != null ) add( controls, BorderLayout.SOUTH ); // add controls mediaPlayer.start(); // start playing the media clip } // end try catch ( NoPlayerException noPlayerException ) { System.err.println( "No media player found" ); } // end catch catch ( CannotRealizeException cannotRealizeException ) { System.err.println( "Could not realize media player" ); } // end catch catch ( IOException iOException ) { System.err.println( "Error reading from the source" ); } // end catch } // end MediaPanel constructor } // end class MediaPanel /************************************************************************** * (C) Copyright 1992-2007 by Deitel & Associates, Inc. and * * Pearson Education, Inc. All Rights Reserved. * * * * DISCLAIMER: The authors and publisher of this book have used their * * best efforts in preparing the book. These efforts include the * * development, research, and testing of the theories and programs * * to determine their effectiveness. The authors and publisher make * * no warranty of any kind, expressed or implied, with regard to these * * programs or to the documentation contained in these books. The authors * * and publisher shall not be liable in any event for incidental or * * consequential damages in connection with, or arising out of, the * * furnishing, performance, or use of these programs. * *************************************************************************/