Combining .wav files

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to combine several .wav files into one file, and do this hands-off in
an automated environment.

Any ideas on how this could be done?

What methods or classes are available for reading .wav formats?

Thanks.
 
This isn't really that tough.. however it depends 100% on what you mean.

You should open each file up and put it in memory, then create a Byte array
in the correct waveformat(headers) and then stuff in the bytes from the wave
file that you want. Not sure what yuo mean by combine100%.. need more detail
 
What I need to do is copy sequentially two or more .wav files into one .wav
file.

I've looked at the information on the RIFF .wav format. The header seems
quite complex. Is there a class to read and write the header information?

Better yet, is there a function that could combine two .wav files
sequentially into one .wav file that also modifiys the RIFF header
information?

Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top