Hi i'm using the audioinputstream for manage a my file audio.
with this i can obtain an array of bytes
audioInputStream.read(audioBytes).
How can i get the samples from this array?
My audio file:
is stereo, 48khz, ...
I have a double[][] array, and I want to get one row into a float[] array. Casting didn't worked at first, so I looked for something different.
I found here in ...
my goal is to take in an array of floats, make an image, resize the image, then read out an array of floats from the resized image.
The data I'm feeding into ...