Raneez Ahmed
Raneez Ahmed

Reputation: 3828

Downsampling pcm/wav audio from 22khz to 8khz

My android application needs to convert PCM(22khz) to AMR , but the API AmrInputStream only supports with pcm of 8khz.

How can i downsample the pcm from 22 khz to 8 khz?

Upvotes: 0

Views: 2385

Answers (2)

max
max

Reputation: 31

I find a java downsample lib :https://github.com/hutm/JSSRC there is also a c version could be used by jni

Upvotes: 0

StarPinkER
StarPinkER

Reputation: 14271

The sample rate is hard coded in AmrInputStream.java.

// frame is 20 msec at 8.000 khz
private final static int SAMPLES_PER_FRAME = 8000 * 20 / 1000;

So you have to convert the PCM to AMR first.

InputStream inStream;
inStream = new FileInputStream(wavFilename);
AmrInputStream aStream = new AmrInputStream(inStream);

File file = new File(amrFilename);        
file.createNewFile();
OutputStream out = new FileOutputStream(file); 

//adding tag #!AMR\n
out.write(0x23);
out.write(0x21);
out.write(0x41);
out.write(0x4D);
out.write(0x52);
out.write(0x0A);    

byte[] x = new byte[1024];
int len;
while ((len=aStream.read(x)) > 0) {
    out.write(x,0,len);
}

out.close();

For Downsampling, You can try the Mary API.

Upvotes: 1

Related Questions