Skip to content

hardcodedjoy/android-lib-wavfileio

Repository files navigation

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

Releases

No releases published

Packages

No packages published

Languages