synchronized (mediaPlayer) {
mediaPlayer.notifyAll();
}
}
});
mediaPlayer.play();
try {
mediaPlayer.wait(MAXIMUM_PLAY_TIME_PER_MP3);
} catch (InterruptedException e) {
LOGGER.error("Interrupted while waiting for " + mediaPlayer + " to complete play of " + mp3File);
}