Not hearing sound in IntelliJ IDEA

import javafx.scene.media.AudioClip;
import java.io.File;

public class SoundPlayer {
public static void main(String[] args) {
File file = new File("res/audio/bg_music_playing.wav");
AudioClip clip = new AudioClip(file.toURI().toString());
clip.setVolume(3.00);
clip.play();
}
}
import javafx.scene.media.AudioClip;
import java.io.File;

public class SoundPlayer {
public static void main(String[] args) {
File file = new File("res/audio/bg_music_playing.wav");
AudioClip clip = new AudioClip(file.toURI().toString());
clip.setVolume(3.00);
clip.play();
}
}
simply not hearing anything, the audio file works fine and the program runs without issues but for some reason cannot hear anything
9 Replies
JavaBot
JavaBot2y ago
This post has been reserved for your question.
Hey @Erky! Please use /close or the Close Post button above when you're finished. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
Unknown User
Unknown User2y ago
Message Not Public
Sign In & Join Server To View
JavaBot
JavaBot2y ago
💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one.
Erky
ErkyOP2y ago
still not getting sounds to work
Unknown User
Unknown User2y ago
Message Not Public
Sign In & Join Server To View
straightface
straightface2y ago
play.drain();
play.close();
play.drain();
play.close();
you need to block main thread from exiting
Erky
ErkyOP2y ago
yeah sometimes it plays a sound for like 0.1 seconds
straightface
straightface2y ago
yeah use drain method to block
JavaBot
JavaBot2y ago
💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one.

Did you find this page helpful?