I am creating a client server program where the client sends a string and as soon as server receives the string it plays a .wav file. Instead of playing the .wav file the server shows this error:
javax.sound.sampled.LineUnavailableException: line with format PCM_SIGNED 48000.0 Hz, 24 bit, stereo, 6 bytes/frame, little-endian not supported.
Here's the code:
try {
AudioInputStream audio = AudioSystem.getAudioInputStream(new File("N.wav"));
Clip clip = AudioSystem.getClip();
clip.open(audio);
clip.start();
} catch(UnsupportedAudioFileException uae) {
System.out.println(uae);
} catch(IOException ioe) {
System.out.println(ioe);
} catch(LineUnavailableException lua) {
System.out.println(lua);
}