com.hardcodedjoy.wavfileio
v1.0.1
minSdkVersion: 21
targetSdkVersion: 33
Android library for reading and writing *.wav files
Read / Write *.wav files.
public WavFileReader(File file) throws Exception { ... }
public int read(float[] dest, int offset, int len, boolean swapLR) { ... }
public void close() { ... }
public WavFileWriter(File file, int sRate, int numCh, int bitsPerSample) { ... }
boolean open() { ... }
public int write(float[] samples, int offset, int len, boolean swapLR) { ... }
public void close() { ... }
This repo also contains an android project that is a testbed app. See its code for more details about using the library.
developer website: https://hardcodedjoy.com