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?
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?
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.
I find a java downsample lib :https://github.com/hutm/JSSRC there is also a c version could be used by jni