I'm reading data from .wav files through InputStream, and read() returns bytes. A sound processing library I use, only accepts float[] to process. After it it done it gives me a float[] back. Now I need to write to the Android's AudioTrack in byte format again.
How do I convert these bytes
to floats[]
, and back to byte[]
? I've searched a bit, but everything seemed to be kinda a different situation to mine, and all problems seemed to be solved in different ways... so i'm kinda lost right now.
If something like this conversion is already offered in some kind of library, i'd be glad to hear about that too!
Thanks!