Package javafx.scene.media

Examples of javafx.scene.media.MediaPlayer.seek()


  public static void seek(final int value) {
    final MediaPlayer player = UISession.getMediaPlayer();
    if (player != null) {
      final double d = value / 100D;
      player.seek(Duration.millis(player.getMedia().getDuration()
          .toMillis()
          * d));
    }
  }

 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.