Package jaco.mp3.player

Examples of jaco.mp3.player.MP3Player


   *
   */
  static private void playMp3() {
    try {
      musicType = "mp3";
      mp3 = new MP3Player(ResourceLoader.getResource(musicfile));
      mp3.setRepeat(true);
      mp3.play();
     
    } catch (Exception e) {
      System.out.println("Can not play \"" + musicfile + "\".");
View Full Code Here

TOP

Related Classes of jaco.mp3.player.MP3Player

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.