Hi,
I have a byte array that hold data containing information about a wav file.
There are 424644 bytes all together, 424600 of them being the actual wav…first 44 are the header.
The wav I’m working with is in 16 bit so Im trying to find a way to loop through the byte array and extract every pairs of bytes (because every 2 bytes will be one of my samples.) from byte 44 to 424600. I would then say want to print each value of the “pair” of bytes?
Im not really too sure how to go about,
Any insights at all?