Skip to content

Instantly share code, notes, and snippets.

View mattmalec's full-sized avatar
😁
breaking code

Matt Malec mattmalec

😁
breaking code
View GitHub Profile
@mattmalec
mattmalec / Resample.java
Created June 14, 2022 16:12
Resample audio in Java (supporting upsampling and down sampling)
package com.mattmalec.resample;
public class Resample {
public static byte[] resample(byte[] data, int length, boolean stereo, int inFrequency, int outFrequency) {
if (inFrequency < outFrequency)
return upsample(data, length, stereo, inFrequency, outFrequency);
if (inFrequency > outFrequency)
return downsample(data, length, stereo, inFrequency, outFrequency);