HI all!
I am searching for an algorithm to convert mono file (wave) into stereo.
I know how to convert stereo into mono:
read left channel -> l
read right channel -> r
mono = (l+r)/2;
But, how do I convert mono into stereo?
Maybe:
read channel -> c
stereoLeft = c
stereoRight = c
Have in mind, that both channels being equal is not a problem...
Any suggestions are very welcome!
Thanks!
