I am trying to read the contents of a WAV file, and to start I want to read the header to find information. According to a lot of sources, the first 44 bytes of the file contain the information.
I have inspected the file with an HEX editor and it contains the correct data, starting with "RIFF", then numbers, "WAVE" and all.
I then tried the following code to access the header values: https://gist.github.com/ranisalt/1b0dbc84ea874a04db3f
Problem is this renders completely useless information, as if I was trying to read something in the middle of the file. I get nonsense values, not consistent with those from the HEX editor:
Please mind that even though the code is not completely correct, my problem is that the fstream read is not rendering the same bytes the file has.
I also am working on an embedded platform with very little memory, so I need code with minimal overhead, that's why I am not seeking a full fledged library.
I tried seeking to the position 0 of the file before reading, but this is even worse, reading other strange values with no meaning.
What could possibly be happening with the file reading to render such nonsense values?
That code is NOT EVEN CLOSE to be the correct way to read a WAV file. A WAV file has structure to it, but the code is completely ignoring that structure, making inaccurate assumptions without validating them:
WAVE
chunk isfmt\0
- not always true!fmt\0
chunk's data is exactly 16 bytes - not always true!fmt\0
anddata
chunks - not always true!You really should use a pre-existing library to read audio files, such as libav, but if you are going to do it manually, at least pay attention to what you are reading. Every chunk has a header that indicates the chunk type and data size. You MUST take those into account correctly. Read the chunks in a loop, reading each header, data payload, and optional padding as needed, checking for specific chunks that you are interested in, and ignoring other chunks that you are not interested in.
Try something more like this: