How to convert 16-bit PCM audio byte-array to double or float array?

前端 未结 2 1746
一向
一向 2020-12-31 13:40

I\'m trying to perform Fast Fourier Transform on a .3gpp audio file. The file contains a small 5 second recording in 44100kHz from the phones microphone.

Every Java

相关标签:
2条回答
  • 2020-12-31 13:56

    There is no alternative. You have to run a loop and cast each element of the array separately.

    I do the same thing for shorts that I fft as floats:

    public static float[] floatMe(short[] pcms) {
        float[] floaters = new float[pcms.length];
        for (int i = 0; i < pcms.length; i++) {
            floaters[i] = pcms[i];
        }
        return floaters;
    }
    

    EDIT 4/26/2012 based on comments

    If you really do have 16 bit PCM but have it as a byte[], then you can do this:

    public static short[] shortMe(byte[] bytes) {
        short[] out = new short[bytes.length / 2]; // will drop last byte if odd number
        ByteBuffer bb = ByteBuffer.wrap(bytes);
        for (int i = 0; i < out.length; i++) {
            out[i] = bb.getShort();
        }
        return out;
    }
    

    then

    float[] pcmAsFloats = floatMe(shortMe(bytes));
    

    Unless you are working with a weird and badly designed class that gave you the byte array in the first place, the designers of that class should have packed the bytes to be consistent with the way Java converts bytes (2 at a time) to shorts.

    0 讨论(0)
  • 2020-12-31 14:04
    byte[] yourInitialData;
    double[] yourOutputData = ByteBuffer.wrap(bytes).getDouble()
    
    0 讨论(0)
提交回复
热议问题