Search found 2 matches

by celoftis
Wed Apr 13, 2011 12:59 pm
Forum: General Audio Programming
Topic: Merge/Interleave two WAV files...
Replies: 3
Views: 3436

Re: Merge/Interleave two WAV files...

edgar-rft wrote:See http://sox.sourceforge.net/, i.e. libsox, also the sox "-m" option and the "mixer" effect.
Great that is exactly the approach I ended up taking. Here are the options that I used:
sox.exe --multi-threaded --combine mix file1.wav file2.wav combined.wav --norm gain -e
by celoftis
Thu Mar 31, 2011 3:17 pm
Forum: General Audio Programming
Topic: Merge/Interleave two WAV files...
Replies: 3
Views: 3436

Merge/Interleave two WAV files...

BACKGROUND I have a program that is generating two WAV files. Each WAV file represents one (1) side of a two-person conversation. I want to combine the two WAV files into one file for playback such that the two sides of the converations are interleaved (vs appending one WAV file to the other). I wil...