I am trying to run a sound file in Java using this code in Google App Engine:
@UiHandler("btnRecite")
void btnRecite(ClickEvent event) throws Exception{
URL soundFile =new URL( "http://everyayah.com/data/Ghamadi_40kbps/audhubillah.mp3");
AudioInputStream ais = AudioSystem.getAudioInputStream(soundFile);
AudioPlayer.player.start(ais);
}
I am getting this exception
GAE:javax.sound.sampled.AudioInputStream is not supported by Google App Engine's Java runtime environment
any idea what could be the reason
thanks