Winamp, force mono output
29 09 2006In the options menu open the preference windows (press Ctrl + P), on the left pane scroll down to DSP/Effect and select on the right pane Nullsoft Signal Processing Studio.
Click on the Configure Active Plugin button, click New, give a name to the preset , check Enable Processing and in the field Per Sample (or sample pair) write:
If you need both channels on the right side
spl1=(spl0+spl1)/2;
spl0=0;
If you need both channels on the left side
spl0=(spl1+spl0)/2;
spl1=1;
Save and close












Thanks man, this is the only useful information on the subject I have found so far.
If you want the same signal through both channels set it to this:
spl0=(spl0+spl1)/2;
spl1=spl0;