Для Windows (32/64) и macOS (64) вы можете использовать FFSampledSP , v0.9.29 или более позднюю.Вы можете получить его либо через эту зависимость Maven:
<dependency>
<groupId>com.tagtraum</groupId>
<artifactId>ffsampledsp-complete</artifactId>
<version>0.9.29</version>
</dependency>
Или через эту загрузку ссылка .
Как только .jar
находится в пути к классам, следующий код должен работать:
import javax.sound.sampled.*;
import java.io.File;
import java.io.IOException;
public class PlayADPCM {
public static void main(final String[] args) throws IOException, UnsupportedAudioFileException, LineUnavailableException {
final File file = new File("your_adpcm_file.wav");
final AudioInputStream stream = AudioSystem.getAudioInputStream(file);
final AudioFormat format = stream.getFormat();
System.out.println("Source format: " + format);
final AudioFormat targetFormat = new AudioFormat(AudioFormat.Encoding.PCM_SIGNED,
format.getSampleRate(), 16, format.getChannels(),
format.getChannels()*2,
format.getSampleRate(), format.isBigEndian());
System.out.println("Target format: " + targetFormat);
// convert source to target format
final AudioInputStream playableStream = AudioSystem.getAudioInputStream(targetFormat, stream);
// get a line and play it.
final DataLine.Info lineInfo = new DataLine.Info(SourceDataLine.class, targetFormat);
final SourceDataLine line = (SourceDataLine)AudioSystem.getLine(lineInfo);
line.open(targetFormat);
line.start();
final byte[] buf = new byte[1024*8];
int justRead;
while ((justRead = playableStream.read(buf))>0) {
line.write(buf, 0, justRead);
}
playableStream.close();
line.drain();
line.close();
}
}