© Apple
Pure Java Apple Lossless decoder (Java Sound SPI)
it works as javax.sound.sampled.spi
this project is a fork of soiaf/Java-Apple-Lossless-decoder
https://jitpack.io/#umjammer/vavi-sound-alac
AudioInputStream ais = AudioSystem.getAudioInputStream(Paths.get(alac).toFile());
Clip clip = AudioSystem.getClip();
clip.open(AudioSystem.getAudioInputStream(new AudioFormat(44100, 16, 2, true, false), ais));
clip.loop(Clip.LOOP_CONTINUOUSLY);
- play clip w/o format conversion (possible?)