JavaFX : MP3 pas totalement lu
Bonsoir !
Dans mon code, j'utilise MediaPlayer afin de lire un fichier mp3. Le fichier est lu mais pas jusqu'à la fin. Y aurait-il un moyen de corriger cela ?
Merci d'avance :mrgreen:
Code:
1 2 3 4 5 6 7 8
| private static void playSpeech() throws InterruptedException{
com.sun.javafx.application.PlatformImpl.startup(()->{});
Media hit = new Media(new File("speech.mp3").toURI().toString());
MediaPlayer m = new MediaPlayer(hit);
m.setAutoPlay(false);
m.setVolume(0.9);
m.play();
} |