I'm looking for some sample code to show me how to add metadata to the wav files we create. Anyone?
If you examine the wave file spec you'll see that there does not seem to be room for annotations of any kind. An option would be to wrap the wave file with your own format that includes custom information but you would in effect be creating a whole new format that would not be readable by users who do not have your app. But you might be ok with that.
Maybe the nist file format will give you what you want: NIST
Here is a lib that could help, but im afraid it looks old. NIST Lib
Cant find more useful information right now how exactly to use it, and im afraid the information papers from my company must stay there. :L/
One option is to add your own chunk with a unique id. Most WAV players will ignore it.
Another idea would to be use a labl
chunk, associated with a que set at the beginning or end of the file. You'd also need a que
chunk. See here for a reference
How to write the data is simple
- Write
"RIFF"
. - save the file position.
- Write 4 bytes of 0's
- Write all the existing chunks. Keep count of bytes written.
- Add your chunk. Be sure to get the chunksize right. Keep count of bytes written.
- rewind to the saved position. Write the new size (as a 32-bit number).
- Close the file.
It's slightly more complicated if you are adding things to an existing list
chunk, but the same principle applies.