Skip to content

Latest commit

 

History

History
31 lines (18 loc) · 973 Bytes

README.md

File metadata and controls

31 lines (18 loc) · 973 Bytes

WavFileIO

com.hardcodedjoy.wavfileio v1.0.1
minSdkVersion: 21
targetSdkVersion: 33

Short description

Android library for reading and writing *.wav files

Description

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.

Links

developer website: https://hardcodedjoy.com