The Magic Of Mid Side

Описание к видео The Magic Of Mid Side

In which I show you how simple and elegant mid side matrixing is by writing the code in realtime, and try to encourage you to try your stereo saturation or distortion effects in MS as well as LR. Its not the same!

Music: Rocket Science by Dan Worrall
Available in all the usual places, Bandcamp link below:
https://dan-worrall.bandcamp.com/trac...

Voxengo MSED (free):
https://www.voxengo.com/product/msed/

If you like this type of content and you want to see it more often, consider signing up for Channel Membership:    / @danworrall  

Or you could buy me a coffee ;)
https://ko-fi.com/danworrall

MS matrix JS code:
Encoder:

--------------------------------------------------------------
desc:DW MS Encoder
//tags: utility mid-side processing
//author: Dan Worrall

in_pin:left input
in_pin:right input
out_pin:mid output
out_pin:side output

@sample
mid = (spl0 + spl1) * 0.5;
side = spl0 - spl1;

spl0 = mid;
spl1 = side;
--------------------------------------------------------------
Decoder:
--------------------------------------------------------------
desc:DW MS Decoder
//tags: utility mid-side processing
//author: Dan Worrall

in_pin:mid input
in_pin:side input
out_pin:left output
out_pin:right output

@sample
left = spl0 + spl1 * 0.5;
right = spl0 - spl1 * 0.5;

spl0 = left;
spl1 = right;
--------------------------------------------------------------

Комментарии

Информация по комментариям в разработке