I don't know of such a tool, but you might want to take a look at the thread I started about
Convolver here:
http://www.hydrogenaudio.org/forums/index....showtopic=41944It is an example of how to swap stereo channels in a stereo WAVE file.
The filter for your case would be like this:
CODE
44100 1 2 3
0
0 0
C:\_\MonoIR.wav
0
0.0
0.0
<empty line>
(save as mono2stereo.txt)
where C:\_\MonoIR.wav is a Dirac impulse file created by generate_dirac_delta.exe as explained in forementioned thread.
More details about filter (painful) syntax
here.
This was for the one-time setup.
To apply the IR filter to your file, use C:\Program Files\Convolver\convolverCMD.exe
e.g.
"C:\Program Files\Convolver\convolverCMD.exe" 0 0 mono2stereo.txt input.wav output-stereoleft.wav
If you want the mono channel to be mapped on the right channel:
CODE
44100 1 2 3
0
0 0
C:\_\MonoIR.wav
0
0.0
1.0
and
"C:\Program Files\Convolver\convolverCMD.exe" 0 0 mono2stereoR.txt input.wav output-stereoright.wav
Granted, convolverCMD crashes at exit and leaves wisdom.fftw everywhere, but it does the job, until you find something better.
Hope this helped.
Rasqual