Skip to content Skip to sidebar Skip to footer

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?

Solution 1:

The sample rate is hard coded in AmrInputStream.java.

// frame is 20 msec at 8.000 khzprivatefinalstaticint 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\nout.write(0x23);
out.write(0x21);
out.write(0x41);
out.write(0x4D);
out.write(0x52);
out.write(0x0A);    

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

out.close();

For Downsampling, You can try the Mary API.

Solution 2:

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

Post a Comment for "Downsampling Pcm/wav Audio From 22khz To 8khz"