tags:

views:

74

answers:

3

I'm looking for some sample code to show me how to add metadata to the wav files we create. Anyone?

A: 

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.

Paul Sasik
From what I've read, I can embed it as part of the RIFF structure, I just can't figure out which structures and tags to use.
Curtis
A: 

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/

InsertNickHere
A: 

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

  1. Write "RIFF".
  2. save the file position.
  3. Write 4 bytes of 0's
  4. Write all the existing chunks. Keep count of bytes written.
  5. Add your chunk. Be sure to get the chunksize right. Keep count of bytes written.
  6. rewind to the saved position. Write the new size (as a 32-bit number).
  7. Close the file.

It's slightly more complicated if you are adding things to an existing list chunk, but the same principle applies.

AShelly

related questions