vote up 0 vote down star

I'm experimenting with JavaFX making a small game. I want to add sound. How? I tried MediaPlayer with media defined with relative source attribute like:

attribute media = Media{
    source: "{__FILE__}/sound/hormpipe.mp3"        
}
attribute player = MediaPlayer{
    autoPlay:true
    media:media
}

It doesn't play. I get "FX Media Object caught Exception com.sun.media.jmc.MediaUnavailableException: Media unavailable: file: ... Sound.class/sound/hormpipe.mp3"

flag

40% accept rate

2 Answers

vote up 0 vote down

Just a guess, but is that file "hornpipe.mp3" and not "hormpipe.mp3" (with an m)?

link|flag
Nope file name is ok. Anyone played sound in JavaFX? – Chobicus Nov 5 '08 at 23:06
vote up 0 vote down

var player = javafx.scene.media.MediaPlayer { repeatCount: javafx.scene.media.MediaPlayer.REPEAT_FOREVER media: Media { source: "{__DIR__}clip.wav" }; }; player.play();

You have to incluye the audio file in the build/compiled directory so Netbeans can pack it into the jar file.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.