Board index » cppbuilder » Joining Wave Files

Joining Wave Files


2004-08-15 09:02:09 PM
cppbuilder49
Hi,
How can I join two WAV files of the same properties and making a new one?
Thanks...
Huseyin Candan
 
 

Re:Joining Wave Files

You could look at the format of a wave file to determine how they are
described and use it to decide how to construct a new wave file that
does what you want.
www.wotsit.org/
. Ed
Quote
Huseyin Candan wrote in message
news: XXXX@XXXXX.COM ...

How can I join two WAV files of the same properties and
making a new one?
 

Re:Joining Wave Files

"Huseyin Candan" < XXXX@XXXXX.COM >wrote in message
Quote
How can I join two WAV files of the same
properties and making a new one?
There are a ton of functions in the Win32 API for working with waveform
audio. For instance, look at mmioOpen(), mmioAscend(), mmioDescend(),
mmioCreateChunk(), mmioRead(), and mmioWrite(). You could open the two
files, determine the combined size of the two datas, then create a new file,
write a new header to it, then write the two datas to the file afterwards.
Gambit
 

{smallsort}