The Magic Of Mid Side

Поділитися
Вставка
  • Опубліковано 14 чер 2024
  • 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:
    dan-worrall.bandcamp.com/trac...
    Voxengo MSED (free):
    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 ;)
    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;
    --------------------------------------------------------------
  • Навчання та стиль

КОМЕНТАРІ • 325

  • @AlexSzokolyai
    @AlexSzokolyai Місяць тому +3

    You are the single UA-cam voice that I trust 100%. Others may be at 80-90%. And the rest are grade-E.
    You are the only engineer on here that confidently demonstrates that he understands the science behind the art… and how to appropriately and masterfully apply these concepts.
    You’ve leveled me up after each video, and I’m grateful.
    Thank you, Mr. Worrall

  • @JeiShian
    @JeiShian Рік тому +213

    You're leagues ahead of everyone else in terms of audio engineering skill, teaching skill and generosity. Thank you 🙏🙏

    • @JimboJones99
      @JimboJones99 Рік тому +8

      God Bless Dan Worrel 🙏🏻🎶🎵
      God Bless President Trump🙏🏻🇺🇸

    • @GizzyDillespee
      @GizzyDillespee Рік тому +1

      I couldn't fathom the depths, so I got relegated to this sub-commentinent...

    • @JeiShian
      @JeiShian Рік тому +9

      @@JimboJones99 Dan Worrall would definitely make a very entertaining president as he would be calling everyone out for their bullshit haha

    • @Trentcast
      @Trentcast Рік тому +3

      Yeah he’s easily one of the only influences in my life as an aspiring audio engineer who keeps me going. Dan just gives you amazing knowledge. Anyone else will try to charge you $150+ for a half-assed “masterclass”, which usually ends up as a gloating session for a lot of producers. Shit you not I paid $100 to learn from an artist I used to look up to and everytime I asked a question I’d get “idk what I’m doing I just fill out the frequency spectrum” 🤡

    • @Trentcast
      @Trentcast Рік тому +1

      @@JimboJones99 😂😂😂

  • @LeonTodd
    @LeonTodd Рік тому +55

    All your videos are brilliant but this one is particularly clear and elegant.

    • @Harrysound
      @Harrysound Рік тому +1

      fancy seeing you here....legend

  • @Peter-tb5vg
    @Peter-tb5vg Рік тому +55

    Even though, half the time I don't know what you're talking about, it's strangely hypnotic and really interesting. One day it'll all click into place. Keep them coming. One of the best channels on UA-cam

    • @aristle_
      @aristle_ Рік тому +3

      i have this mindset towards a lot of things but its important to remember that it only will click into place if youre regularly actually doing work and applying the knowledge youre taking in, active learning above passive, easier said than done though, best of luck

    • @GizzyDillespee
      @GizzyDillespee Рік тому +1

      That's because he once was a stage hypnotist, in the same sense that Mickey Mouse was a broom hypnotist in Sorcerer's Apprentice. And all the world's a stage, according to Dr Spock.

    • @No.0.o.0
      @No.0.o.0 Рік тому

      You’ll get there !

    • @Mtaalas
      @Mtaalas Рік тому

      The information Dan is giving does require certain amount of basics about math and physics.
      And that can't be explained easily in a video, that needs studying and reading.
      Though, to understand this one, high school basic math is enough. I mean, we weren't really explained how you sum signals and how decibels work until high school/vocational school/ polytechnic.

  • @lawinter1949
    @lawinter1949 Рік тому +12

    For anyone using Logic that doesn't know, you can make any plugin stock or 3rd party plugin mid/side by choosing dual mono mode on a stereo track and changing it from Left/Right to Mid/Side.

  • @SirNotAppearing
    @SirNotAppearing Рік тому +11

    one of your older videos where you demonstrated Voxengo's Sound Delay, in M/S mode, using very small delays between the mid and side (either positive or negative mid relative to side) really opened my eyes (ears?) to how beautifully you can effect the stereo field and perceived depth of a sound with such a simple adjustment.
    From there, as above, thinking in terms of effecting only mid or only side, or each in different ways or amounts is, as you said: Magic.
    "Thanks again for" creating.

  • @aviezer11neeso
    @aviezer11neeso Місяць тому

    'its not so complicated, really
    lets write some code!'
    dan you're the best! for real! i am very thankful for the cheeky knowledge you implant in my brain!

  • @panorama_mastering
    @panorama_mastering Рік тому +2

    Saved this to my private playlist for future reference; great work Dan!

  • @CassiaConvolution
    @CassiaConvolution Рік тому +25

    Hey, Dan. The division by root(2) normalizes the linear transformation you've done of the plane, say the (L, R) plane, so that it's a 45° rotation of itself, and we might call the target the (M, S) plane, which is the same thing (just R^2, of course). Written as a linear transformation, it's the 2x2 matrix of 1s with the lower-left entry a -1 (for the inverse, it's the upper right entry as -1), but with the scalar root(2)/2 (= 1/root(2)) as a multiplier.
    There are a couple of interesting corollaries to this, namely, that the vertical movement of a stylus on a vinyl record is actually the mid channel (using the root(2)/2 version, that is) and the horizontal movement is the side channel.
    Secondly, there is a continuum of rotations of the (L, R) plane that are possible, not just 45°, which could be used exactly as mid-side is used (e.g., rotate the plane by an angle theta, do some processing, and rotate it back by -theta), and might be musically interesting. It would be absolutely trivial to write these transformations for reaper, once you have the mathematics of it conceptualized.

    • @keywestjimmy
      @keywestjimmy Рік тому +6

      You are absolutely correct! You're describing the Blumlein stereophonic field. Can you please point me to more in depth information/background on this subject? Jim

    • @guckfoogle2779
      @guckfoogle2779 Рік тому +2

      Big brain post. Thank you for sharing this insight!
      ❤️

  • @cutrugs5676
    @cutrugs5676 Рік тому +4

    Why do you give us all these incredible tricks? I’m so grateful

    • @Bthelick
      @Bthelick Рік тому +4

      Everyone said this to me when I said I wanted to start a channel sharing my knowledge.
      "Why give away all your secrets"
      They were worried because I was their best engineer/producer.
      But none of us progress if we don't share what we've figured out.
      And there's no danger anyway, the 'secret' is just 20+ years of ear training and practice there's still no short cut for that regardless of how many tricks you pass on!

    • @DanWorrall
      @DanWorrall  Рік тому +11

      I've become addicted to the dopamine hit when a video does well. It's like a computer game :)

  • @seekyeefirstforsound
    @seekyeefirstforsound Рік тому +3

    Been following you since forever. Live sound and recording guy here from Singapore. Many thanks to the work that you’re doing for the world of ours.

  • @brainwasher3742
    @brainwasher3742 Рік тому +2

    Just when I think I’ve got an okay grasp of mixing concepts. Dan releases a video.. Thank you.

  • @BmxTzu101
    @BmxTzu101 Рік тому +13

    I love the education! And yes it's only a select few distortion plug-ins that has ms mode on them.
    It's quite inspiring on how it affects sound.
    Thanks Dan!

  • @mradamcshaw
    @mradamcshaw Рік тому +10

    I particularly enjoyed your backing music in this one. The female vocals really topped it off.

    • @DanWorrall
      @DanWorrall  Рік тому +6

      www.plogue.com/products/alter-ego.html

    • @mradamcshaw
      @mradamcshaw Рік тому +2

      @@DanWorrall Lol I actually have that plugin myself somewhere with a few anime characters. Never used it though.

    • @DanWorrall
      @DanWorrall  Рік тому +4

      I've tried loading it since and results were laughably bad! But on that particular day with that particular mix it was just magic :)

    • @straypacket
      @straypacket Рік тому

      Wow - I was thinking it was a Roland V-Synth!

  • @VISSEX
    @VISSEX Рік тому +7

    Best channel ever ❤️ grateful for you and your work and immense knowledge that you’re sharing

    • @vandpiben
      @vandpiben Рік тому +1

      He's the Magnus Carlsson of the music industry

  • @Doty6String
    @Doty6String Рік тому +1

    LOVE the ethereal vocals on this track man!

  • @juleleleldilla3950
    @juleleleldilla3950 Рік тому +3

    every time you upload bro thats like a second birthday

  • @stevenmclane9372
    @stevenmclane9372 Рік тому

    Always a bright spot in my day when you post a new video. Thanks!

  • @harrisbeatsfrankou6304
    @harrisbeatsfrankou6304 Рік тому +6

    This channel is genius and I was getting back to programming...so this is actually beyond perfect as I can do some audio coding!! And as I am a neophyte on mid side....it will be a brainiac exercise par excellonce!
    You're amazing.

  • @ArielTavori
    @ArielTavori Рік тому

    When you hit like, and comment, during the pre-roll ad... Keep doing what you do man, we love it!.. 🙏

  • @auralsunrays9229
    @auralsunrays9229 Рік тому +1

    Useful information as always, thanks! Also liking the track in the background alot😃

  • @joelybarish4618
    @joelybarish4618 Рік тому +1

    or you could just spring for the Blackbox HG-MS plug. LOL, just bustin on ya Dan. You're the best!

  • @jesperborgstrm3385
    @jesperborgstrm3385 Рік тому +3

    what is crazy is that I have been experimenting with this since I got the non MS version of hg2 as Dan did in the giveaway earlier this year. thank you for the cool insights!

  • @shengwho8430
    @shengwho8430 Рік тому +1

    No better way to start a sunday afternoon then with a bowl of cereal, a spliff and a new dan worall video.

  • @AJOrpheo
    @AJOrpheo Рік тому +5

    At first I was worried I was gonna have to save this video until I got into the studio to hear the differences but even on a phone this makes a huge difference and another tool I look forward to trying to exploit on my next mastering session! I’ve used lots of MS on compressors and eqs but never saturation, never really came to mind

  • @katabatica
    @katabatica Рік тому +12

    Dan once again pushing the audio engineering boat out to new and beautiful places

    • @Mtaalas
      @Mtaalas Рік тому +4

      I don't think he's pushing it to new places as much as he's showing how low the bar for an "audio ´engineer´ " has been for a long time... it's so often self proclaimed title thrown around by people who do not fill the requirements to call themselves engineers to impress their clients and bill more money from them.
      I've always hated it, for example I've met so many high earning guys that do not have a clue how compressor really works and what happens to the signal and how it's distorted by different adjustments on the front panel... they just wing it and by trial and error they find something "pleasing" without any clue what they're actually doing.
      To be an engineer is to be well read in math, physics and to have been spend those ~4 years after high school in higher education and to have gotten a degree. Or at least have all that knowledge expected.
      If you do and ask a self proclaimed audio engineer "to explain what does Nyquist Shannon Sampling Theorem say about AD converting a signal and DSP" and they look at you like "a what now??"... they're full of it. It's basics and fundamental theorem that should be understood by an Engineer. Among various, various other concepts around signals and waves.
      Good audio engineer also understands basics of electronics (on component level, how to make circuits and how different analog circuits work) and programming (because of DSP) and because 99% of audio is about electronics recording, altering and reproducing signals. If they don't know what "ohms law" is, or "draw me rough sketch of how mic pre-amplifier works" or "if i want to break down a sampled signal into it's constituent frequencies, what is that process called?"
      Almost any true Audio Engineer can do these things... they might not remember the details or be specialized on mic pre-amplifiers or DSP as such, but these are the basics that you need...
      I know all this stuff. I'm electronics designer, AV technician, programmer, AV service technician etc... but since I haven't done to work and gone through the higher education, i restrain myself from calling myself an engineer.
      And so should everyone else if they haven't done the works :)

  • @Mtaalas
    @Mtaalas Рік тому +1

    Again... Dan is one of the few who can truly call themselves an audio ENGINEER... I've met too many who proclaim themselves to be audio engineers, but lack the scientific understanding of what the hell signal processing actually is, how human hearing and perception really works etc.
    But Dan... he's an ENGINEER.

  • @timnordberg7204
    @timnordberg7204 Рік тому +3

    would love to see an in-depth tutorial about M/S compression with an emphasis on not just what it is or how it works but *why* you'd want to do it and a few demonstrations of its possible effects. Also--the backing track is your best tune to date, IMO.

  • @davidlevymusic
    @davidlevymusic Рік тому +2

    M/S makes a huge difference. Great tip. Thanks man!

  • @mojojojo9687
    @mojojojo9687 Рік тому +1

    As always, perfect timing. Just ran my new culture vulture in m/s, it's incredible

  • @TomasHradckyComposer
    @TomasHradckyComposer Рік тому

    Wonderful piece you wrote.

  • @matthewchavezm.b.s5503
    @matthewchavezm.b.s5503 Рік тому

    Didnt expect to get a lesson in coding but it is what these options run on. Thx for the in depth review.

  • @kamilpaszko751
    @kamilpaszko751 Рік тому

    Thank you Dan! Your knowledge is huuge!

  • @mihneazoican2479
    @mihneazoican2479 Рік тому +1

    Dan’s videos make me happy, part 2

  • @styzr
    @styzr Рік тому

    Thanks. Grateful as always for your sharing.

  • @heartheroaaar1168
    @heartheroaaar1168 Рік тому +3

    Really cool track ! (And very interesting content as always)

  • @nexorenity
    @nexorenity Рік тому +1

    Been waiting for this, thank you sir!

  • @eyeball226
    @eyeball226 Рік тому +2

    I did precisely this with JSFX years ago (including compensating the volume using the square root of 2 so I could use a single plugin for both).
    I'm rather chuffed to see something I worked out myself in a video from someone I respect so much.

  • @omarbonifacino2230
    @omarbonifacino2230 Рік тому +1

    the M / S technique is very interesting and very important. Very important

  • @henriquematias1986
    @henriquematias1986 Рік тому

    Dan thanks a lot for this, only you would be able to explain this in such simple way and at the same time include a big nugger in the middle of the video. you rock for real.

  • @sickassbeats
    @sickassbeats Рік тому

    YOU are magic, this videos are incredibly helpful!!

  • @JanSandahl
    @JanSandahl Рік тому

    Love the music! 💚

  • @BenMartinBox
    @BenMartinBox 8 місяців тому

    Thank you Dan. I've used the MS JS plugin that already comes with Reaper but I'm surly gonna test yours. Much appreciated.

  • @ReductioAdAbsurdum
    @ReductioAdAbsurdum Рік тому

    I love that this starts with you writing a plugin _in the DAW's built in plugin editor._ Try that in any other DAW but REAPER.

  • @ianmcallister1170
    @ianmcallister1170 Рік тому

    Love you Dan! You're my kind of engineer

  • @retta.
    @retta. Рік тому +1

    Holy s*** I've luckily never needed to use the Enc/Dec in MSED, I have MS plugins. I've had it for many years, of course because of you. lol But no where in the Manual does it clear up that the Side channels would be more quite than the Mono. Wow, & that's why FabFilter approaches you for them tutorials❤‍🔥. Loved how you said at the end "or adjust it by ear like a normal person". 👏(I'm always adjusting either way haha)

  • @albiss1164
    @albiss1164 Рік тому

    My head is spinning; will have to watch this a few times, lol.
    Thanks professor Worrall! :)

  • @archologyzero
    @archologyzero Рік тому

    Love these videos! Thank you for everything you do!

  • @banterbanter
    @banterbanter Рік тому

    Thanks Dan 🏆🥇

  • @kid_missive
    @kid_missive Рік тому +1

    That was really beautiful - I have no idea why this coding example has helped me understand mid/side, since I do not ever code.

  • @vladgsound
    @vladgsound Рік тому +15

    Another interesting trick for saturation plugins is to invert the phase of one channel before the plugin and invert it back after the output.

    • @thomasstone1363
      @thomasstone1363 Рік тому +2

      I'm intrigued, what is the sonic effect of this trick?

    • @1b2m
      @1b2m Рік тому +7

      Polarity, not phase. If you inverted the phase, the signal would be running backwards. :)

    • @jj4l
      @jj4l Рік тому +1

      @@1b2m if someone understand something as phrase and you got what they meant then quit the fake grammar lesson

    • @1b2m
      @1b2m Рік тому +2

      @@jj4l Right, because that's what Dan's channel is all about, not insisting on details and getting things right, just being content with wishy-washy brushed-the-surface does-the-trick. And for what it's worth, correcting someone's incorrect use of a word is not a grammar lesson, it's a vocabulary lesson. You're welcome.

    • @DanWorrall
      @DanWorrall  Рік тому +15

      Phase is correct. First, because flipping polarity results in 180 degs phase shift. Second, because it's common usage and everyone understands the term.
      You're correct that I usually try to use the term polarity when that's what I'm talking about, but only because it's more specific, not because it's more correct.

  • @williamtell1477
    @williamtell1477 Рік тому +2

    Is Dan Worrel the Jimi Hendrix of DAWs? Seriously Dan, we love your stuff and IMO it is next level. Thank you so much for sharing it. FWIW lot of us speak code. It will be like knowing how to use a compressor in the future.

  • @mrnelsonius5631
    @mrnelsonius5631 Рік тому +5

    Awesome! The really interesting thing is the effect that intermodulation has on the perceived stereo image; it’s a night and day difference. Maybe not right for everything but definitely worth auditioning and playing with. Fantastic as always Dan 🙏

  • @XCenturionX
    @XCenturionX Рік тому

    Priceless...

  • @jibeji
    @jibeji Рік тому

    I love the conclusion 😁

  • @papito2lindo
    @papito2lindo Рік тому

    I would have never known this… another tool I can add to my engineering 💼. Thank you

  • @BojanBojovic
    @BojanBojovic Рік тому

    We, this is brilliant! :) Thanks Dan, please make a video with other Tukan plugins, some of them seem very interesting. :)

  • @robbielinden448
    @robbielinden448 10 місяців тому

    dan, man these videos are gold and the depth of your understanding is unmatched, where have you learned all this? have you figured it yourself or was it through school? i really need to know

    • @DanWorrall
      @DanWorrall  10 місяців тому

      No schooling. I dived in and learnt on the job.

  • @UPPERKELLER
    @UPPERKELLER Рік тому

    Love your videos♥️

  • @pittjpb8
    @pittjpb8 Рік тому +1

    Mid side needs to be a lot more mainstream than it is! Thanks for pushing the ball a few more yards down that field Dan. The amount of mixing I can accomplish just pulling away junk with ProQ 3 mid-band cuts continues to amaze me.

    • @nofood1
      @nofood1 Рік тому +2

      thats cause the pros know using Mid side eq on everything ruins your sound....

  • @jesperborgstrm3385
    @jesperborgstrm3385 Рік тому

    I rewatched just because it makes me feel good 👍

  • @Lothyde
    @Lothyde Рік тому

    This is genius how have I not thought of it before!

  • @iamyila
    @iamyila Рік тому +2

    Voxegeno the best plugins ;)

  • @Zach-bc7xi
    @Zach-bc7xi Рік тому

    Never thought I'd be getting a basic coding lesson in a music production video but here I am.

  • @davewestner
    @davewestner Рік тому

    Man, you make some cool friggin music

  • @Stormsurf001
    @Stormsurf001 Рік тому +3

    Really like the song you wrote for backing this video, I think you've used it before. Either way, it's a keeper!

  • @IAMCORNHOLIOINEEDTP
    @IAMCORNHOLIOINEEDTP Рік тому

    enjoyed this one

  • @SALEENS7GTR5
    @SALEENS7GTR5 Рік тому +1

    Mid-side is easy in FL, using Patcher, and I pretty much use it on every sound I want wide. Fruity Stereo Shaper does a really good job with that.

  • @lolilollolilol7773
    @lolilollolilol7773 Рік тому +1

    Note that Reaper already comes with m/s encoder and decoder in JS by default.

  • @gravitytwins1921
    @gravitytwins1921 Рік тому

    Ur legit the GOAT!!!!!!

  • @E-1K
    @E-1K Рік тому

    Ableton's 'Utility' plugin. Right click over width, and mid/side becomes a ratio.
    Waves StudioRack. Create parallel channels. Toggle the setting at the top of the channels (stereo, l, r, mid, side).

  • @Lillandon1234
    @Lillandon1234 Рік тому

    This is why the vertigo and black box are sooooo goood

  • @Sambhu.s
    @Sambhu.s Рік тому

    Love the song

  • @mindstuff417
    @mindstuff417 Рік тому

    This is what I love about my elysia karacter.

  • @brainwasher3742
    @brainwasher3742 Рік тому

    Thanks

  • @tntero
    @tntero Рік тому +1

    And just like that I finally understand what mid-side even is

  • @bassplayingchris
    @bassplayingchris Рік тому

    Very cool!

  • @paulmonkcom
    @paulmonkcom Рік тому

    Very nifty Professor Worrall 🤨👍🏽

  • @MrPLEASEINSERTNAME
    @MrPLEASEINSERTNAME 16 днів тому

    goes crazy

  • @artysanmobile
    @artysanmobile Рік тому

    I found M/S very early in my career, when I would try anything. Many of my recordings are either only an M/S decoded pair - usually U87 - or traditional multitrack with a featured M/S pair. There are countless advantages along the way, like a perfect center channel whether or not I have the time to make stereo. The ability to edit the microphone ‘positions’ after the fact is as close as it gets to a free lunch.

  • @kiminthemix4251
    @kiminthemix4251 Рік тому

    Dan is a God 🙏🏻

  • @omarbonifacino2230
    @omarbonifacino2230 Рік тому

    great video

  • @leonsebastian5198
    @leonsebastian5198 Рік тому

    Hey Dan! Thanks for the great content as usual!
    I was wondering if you would care to make a video about mid/side compression, preferably with the FabFilter Pro-C 2 included, to educate about any problems that might occur, as well as sharing the way you maybe like to- or would use them and when you would avoid them.
    Personally, regarding the plugin, I’m eager to know if there are any risks of causing issues by NOT dragging the wet- and dry “m/s-panners” fully to each side and instead having a blend.
    Thanks again!

  • @Windkind0
    @Windkind0 Рік тому

    As someone with a modular synth, Mid/Side is a great way to use two different analog synth filters on a stereo source without running into accidental panning issues (because e.g. you might have two different filters instead of two perfectly calibrated ones of the same type).

  • @GloveBunniesVideos
    @GloveBunniesVideos Рік тому

    Brilliant video. I always thought mid/side was some kind of audio voodoo that only engineers who wore aviator sunglasses and drank mead could comprehend. Thanks!

  • @disectormusic
    @disectormusic 11 місяців тому

    Midside is my GOTO since years, not on all songs for sure but the ones i mid and side and then even sidechained the sides with the mid as the input 😂 all those tracks really sound insanely good on my IEMs

  • @DaveChips
    @DaveChips Рік тому

    Yesterday your "Delta" bus saved my life 😁
    Can't wait to see this video 😊

  • @Bthelick
    @Bthelick Рік тому +6

    Variety of sound uses mid side a lot of for his saturation algorithms. And they sound glorious imo. (he wrote the Slick EQ saturation code for Tokyo Dawn if you recognise the name btw)

    • @joecm
      @joecm Рік тому

      Thanks for signposting variety of sound - hadn't heard of him before but it seem like really valuable freeware. Lots of 'good as/better than paid' kind of comments around it!

    • @Bthelick
      @Bthelick Рік тому +1

      @@joecm you're welcome, enjoy! Been using it professionally for a decade.
      One of the best transformer models out there. Probably only 2nd to fabrice's work with slate imo.
      Very subtle stuff if you haven't got the ear for it but just very good 'flavour' gear, free or otherwise.

  • @H2SO4RUS
    @H2SO4RUS Рік тому +4

    Super! Dan! Thanks to you I have gained so many useful things. this is amazing, thanks a lot! I really respect you;)
    In one of your videos you noticed that mixing records and live sound have different philosophy and approach. Could you expand on this topic?
    Could you share your knowledge of live sound? Personally for me it would be very interesting (not only because I'm your fan).
    Please 👍🏼 the comment if the topic is important to you too.

  • @EricRabb
    @EricRabb Рік тому

    I need more lessons on m/s mixing, Dan, if you haven’t made a beginner tutorial on m/s processing,pls make one! I need to know how this works.

  • @intranexine8901
    @intranexine8901 Рік тому +2

    Would be cool if you could teach us how the "focus" and "field" stuff in the Mr.MS plugin works. It seems really interesting, making side information from the mids and vice versa, but it's only avalible with I-Lok so It'll sure as hell not end up on my PC.

  • @Aio-Project
    @Aio-Project 7 місяців тому

    in reason i have a ms matrix using the two Thor synths lol. Nice point about where to put the gain compensation

  • @jungleb
    @jungleb Рік тому

    You're amazing

  • @homeworldmusic
    @homeworldmusic Рік тому

    nice demo track indeed

  • @verdrehtewelten
    @verdrehtewelten Рік тому

    always awesome when i see how you use the same (not all) plug ins that i use. but your way is another world. it´s so much fun to see, how you can use a plug in. fucking great^^ and i get knowledge. ithat´s not easy^^ so thanks and have a good time. greetz from germany

  • @Not-Only-Reaper-Tutorials
    @Not-Only-Reaper-Tutorials Рік тому

    Great educational video. Actually the very simple matrix (L+R)+(L-R) =2L and (L+R)-(L-R) = 2R and we get louder channels once we know it, presumably we can manage it

  • @blacklightning7227
    @blacklightning7227 Рік тому

    Thanks mr Worrall. impressive skills. my solution would employ a bit of algebra with a level variable to solve for the actual ratio of relative gains to be encoder and decoder forward/backward compatible.

  • @sidewindermusicstudio
    @sidewindermusicstudio Рік тому +58

    Seriously Dan, please open an academy online and just TAKE MY MONEY!

    • @bestdisco1979
      @bestdisco1979 Рік тому +11

      No , stay here,,I can’t afford expensive courses.

    • @AboveEmAllProduction
      @AboveEmAllProduction Рік тому +1

      No what he's doing now is great enough

    • @NathanielPrinceCoulter
      @NathanielPrinceCoulter Рік тому

      Ditto

    • @reziahamed6654
      @reziahamed6654 Рік тому

      🤣🤣👍🥇 No better way of spending your money under the sun.. better.. ever!!

    • @sub-jec-tiv
      @sub-jec-tiv Рік тому

      If you want to give him money you can just buy one of his t-shirts or leave generous $ comments. I’m sure you mean you want a deeper course explaining everything so you are an amazing mix engineer right away. Unfortunately years worth of hard listening is required to be a good engineer, regardless of the information someone else has told you. That said, i would definitely enjoy a deeper dive series like that.

  • @bloodyharprecords4910
    @bloodyharprecords4910 Рік тому

    Love the video, gave me a laugh for the coding. If you can tell me why you decide to code, I would love to know

  • @LeonidPetrin
    @LeonidPetrin Рік тому

    amazing