I tried making my own VST plugin, so you don't have to.

Поделиться
HTML-код
  • Опубликовано: 26 сен 2024

Комментарии • 175

  • @DHealey
    @DHealey 4 месяца назад +177

    Nice video, and thanks for the mention! :)

  • @mavdotj
    @mavdotj 4 месяца назад +121

    Being a dev & music producer, this actually just warmed my heart

  • @Beatsbasteln
    @Beatsbasteln 4 месяца назад +329

    it's cool to see how easy it is to put some dsp and parameters together with HISE, but don't be afraid of just using JUCE and C++. It is actually one of the most easy to understand languages. I mean most of the time you just write classes, then make objects of those and let them do things. when people say C++ is hard they are talking about it from a more theoretical perspective. like how hard the language can be if you try to understand every aspect about it and if you try to understand how it works under the hood. but I personally just like to drive a car. I don't need to be the mechanic

    • @C.S.Argudo
      @C.S.Argudo 4 месяца назад +28

      Deadass though, I took a break from production to learn to code and found out it's not THAT insane

    • @TheOfficalAndI
      @TheOfficalAndI 4 месяца назад +3

      When I made a calculator in C++ though, I've had a bunch of troubles with arrays and pointers.
      Sometime passing them as an argument I wanted to reference the original array, and sometimes make a copy of it,
      and I am still not sure how to do each.
      Also having Function heads and bodies split, no method for getting an array length (you only get its memory size, and need to divide it with how much memory your variable type takes),
      and iirc there weren't even strings as a type, you had to make a char array,
      it's definitely not intuitive to use, compared to Java, C# and Javascript.
      Worth learning though.

    • @MRL8770
      @MRL8770 4 месяца назад +21

      It seems easy at first, then you realize just how many sneaky traps it has and how deep you can go and exploit its features, then it becomes easy once again.
      Dunning-Kruger effect.

    • @isafi6408
      @isafi6408 4 месяца назад

      @@TheOfficalAndI you can define a string like std::string str = "string"; or std::string str("string"); you don't have to use c-style strings (null byte terminated char arrays).
      to pass an object by reference you use the "address of" operator, '&':
      #include
      // using a string here, but this works for any type
      void changeStr(std::string& str) {
      str = "goodbye world";
      }
      int main() {
      std::string str = "hello world";
      std::cout

    • @Temulgeh
      @Temulgeh 4 месяца назад +4

      ​@@TheOfficalAndI you might be thinking of C? C++ has strings and arrays that know their size (as well as dynamic arrays called vectors)
      also, understanding values/pointers/references is crucial to understanding how most languages work (basically all imperative languages)

  • @christophhart6643
    @christophhart6643 3 месяца назад +35

    HISE Author here, congrats to the video, it's really nice to see people make their stuff using my framework! Were you the one having problems with the slash in the Dry / Wet parameter in the forum?

    • @DJChappie001
      @DJChappie001 2 месяца назад +5

      You are the man! Thanks to you idiots like me are able to make plugins now too.

  • @Herfinnur
    @Herfinnur 4 месяца назад +24

    I honestly was just running this video in the background while doing my morning routine, but something clicked when you - of all things - started talking about the UI, and now I'm so fired up that the breakfast feels weird in my mouth!
    Somewhere around the millenium there was this plugin that I got to use on someone else's computer and I freaking loved it, but I never found it again and I'm guessing they took it off the market. The UI was white knobs, sliders and buttons on a white background and it was conceived as a all-in-one mixing strip for making your first quick sketch. I was new to music making so I don't know if the quality of it was actually good, but it had so much functionality but no fluff, and the UI design and layout was better than on anything I've eve used since. If anyone here is old enough to know what plugin in talking about I would be very grateful for any info, but apart from that, I now want to make that plugin!

    • @orokan
      @orokan 3 месяца назад +1

      Was it a VST called "Voyager"?

    • @Phosfit
      @Phosfit 3 месяца назад +1

      Eggwhite

    • @AB_ATT
      @AB_ATT 3 месяца назад +1

      Waves Renaissance Channel?

    • @Herfinnur
      @Herfinnur 3 месяца назад +2

      Found it! TeamDNR Mixcontrol 1.0!
      Everyone else hated the plain user interface of that first version, apparently. Now that I’ve had a fresh look at it, I can see that the EQ section is kind of dumb, but I still love the concept of the rest, i.e., the left side of the user interface, and I’m going to write and sketch some ideas for how to improve it. Thank you for your suggestions everybody, I honestly didn’t know any of your suggested plugins so it’s been interesting to look into

    • @orokan
      @orokan 3 месяца назад

      @@Herfinnur Awesome! Glad you found it :D

  • @adentravis
    @adentravis 4 месяца назад +21

    Yes! I just started using HISE a few months ago, and just recently released my own plugin, it's awesome to see what other people in the community are making! Great video!

  • @Kupta
    @Kupta 3 месяца назад +6

    I always wondered how plugins are made but the knowledge on this topic online is really limited and not really talked about. Thank you for this video!

  • @shrqdubs827
    @shrqdubs827 4 месяца назад +65

    how have i never heard of hise before 😭

  • @24Carrrot
    @24Carrrot 4 месяца назад +9

    Yooo this video is actually insane, Ive been using juce for a while and as much as i love the control i have over everything, HISE looks like a great option for quickly making test projects and fun ideas. Super video and i love the formatting too!!

  • @noname-mi3zl
    @noname-mi3zl 20 дней назад

    This video was crazy bro. Nice job you did❤

  • @minimumviablepizza
    @minimumviablepizza 26 дней назад

    Have also been trying to learn JUCE but as a JavaScript guy its been a bit of a slog. HISE looks exactly like what I need to finally build my audio ideas out of my head and into VST. Thanks for this vid and the developers! It needs more airtime.

  • @alexsnower8398
    @alexsnower8398 4 месяца назад +8

    Yes, perfect content! We wanna see more videos like this 🔥

  • @rebirth4119
    @rebirth4119 4 месяца назад +3

    Another great way to build a plugin with visual scripting is through the program Plugdata. Its workflow is node based and doesn't require writing code and its design is optimized so cpu usage is as minimum as possible. A well known producer called Nasko has currently made a spectral envelope follower and a spectral compressor/clipper hybrid(with an option to retain important formants).
    The only downside is that plugins made can only be ran as long as you have the base program(similar to Reaktor in that way.

  • @sofiejensen3804
    @sofiejensen3804 Месяц назад

    Thank you for this video! It was exactly what I looked for!

  • @EdTalenti
    @EdTalenti 4 месяца назад +3

    Amazing video!

  • @ROSACEPONY
    @ROSACEPONY 4 месяца назад +5

    I like to use HISE too, but now i'm also learning PlugData wich look really interesting to make VST plugins

  • @apaitiadrivationo5628
    @apaitiadrivationo5628 22 дня назад

    Thanks for sharing, wanna create my plugins too. I will try this ❤

  • @tiwanndev
    @tiwanndev 4 месяца назад +4

    I made my own Soft Clipper plugin using Juce and C++

  • @dumaass
    @dumaass 4 месяца назад +3

    Thanks for making this. I've had ideas for plugins that I don't have, but would like to, so I might try making those.

    • @notreally-sf3df
      @notreally-sf3df 4 месяца назад

      Name three.

    • @dumaass
      @dumaass 4 месяца назад

      @@notreally-sf3df I only remember one. A reversed reverb that starts before the actual sample plays. It's been used as a vocal effect on Starcraft's Protoss' speech.
      Also I'll edit the comment to say "plugins that I don't have." Don't know why I said "that don't exist yet."
      I do remember having other ideas, though.

    • @notreally-sf3df
      @notreally-sf3df 4 месяца назад

      @@dumaass Alright that 1) isn't a real time effect, not what a pluigin does. 2) there are plugins that do it as effectively as you can, but there's just no point. 3) Glitch plugins can do it but it's limited and offline as opposed to online.
      People have min/maxed that for 20 years and it's as good as it's gonna get, just do it properly. We have AMAZING predelay plugins now, but you have to bounce down and align it yourself.
      Jesus christ, this was even worse than I thought. If you have not yet started making plugins but think you can; something's definitely wrong with you so please stop thinking you're fucking einstein.

    • @galactic6495
      @galactic6495 3 месяца назад

      @@dumaassyou'd probably have to add a massive amount of latency to do that

    • @dumaass
      @dumaass 3 месяца назад

      @@galactic6495 That's true. Or maybe it could just be some kind of rendering tool.

  • @portlandhorton
    @portlandhorton 3 месяца назад

    I would definitely love more videos on this topic 🤝

  • @busyworksbeats
    @busyworksbeats 4 месяца назад +5

    Sick! Glad you figured it out! Power to you! Shoutout Producer sources for helping me 🙏

    • @BadTrip69
      @BadTrip69 4 месяца назад +1

      You should be ashamed of yourself. You fraudster.

  • @matthewwilson3673
    @matthewwilson3673 Месяц назад

    Great tutorial!

  • @1e1001
    @1e1001 4 месяца назад +2

    holy shit, so glad i use linux where we have LADSPA, where a plugin is literally just a tiny shared object. no need to worry about designing an interface or node-based language. only annoying bit is the "id" but i don't think many daw's nowadays care about the id

  • @somethingc00l1
    @somethingc00l1 3 месяца назад

    this video is amazing. ive always wanted to do this and I followed along with the video and made my own plugin! thank you so much for making this!

  • @DIXERION
    @DIXERION 4 месяца назад

    I also got into VST plugin development some time ago. I didn't like the way JUCE or other tools were organized so decided to study the interface between the host and the plugin and started making my own framework completely from scratch (without even using the VST SDK). It was progressing great and everything worked fine, but it was so time consuming that I had to suspend this project for doing other stuff that were more useful for me. But I definitely will resume this project in the future.

  • @cosmo499
    @cosmo499 4 месяца назад +1

    i dont even make music or code but this tutorial is so great quality

  • @ynsanytsk
    @ynsanytsk 4 месяца назад

    ngl, youtube recommended this video and on first 40sec you got me subscribed, amazing!

  • @proxzi
    @proxzi 4 месяца назад +1

    great video, I really like the approach you took🤙🏻nice job 💯

  • @hldfgjsjbd
    @hldfgjsjbd 4 месяца назад +2

    Potential is huge, but you will never come back to it :)

  • @Difixed
    @Difixed 4 месяца назад

    really good video, loved the editing and congrats on the video popping off xd

  • @djvidual8288
    @djvidual8288 4 месяца назад +1

    Like mentioned, this is like Patcher in FL Studio but universal for every daw.

  • @ninjajakee
    @ninjajakee 4 месяца назад

    This vid is soo cool, id love to see a part 2!

  • @kriss12loverap
    @kriss12loverap 4 месяца назад +3

    You should try plug data! Haven’t seen the vid yet but didn’t see it in the thumbnail

  • @gacekneo
    @gacekneo 2 месяца назад

    Great video🔥

  • @cedricwiebe4484
    @cedricwiebe4484 4 месяца назад

    Awesome video - I always felt like the barrier of doing real vst plugins was way too high! As much as I enjoy doing Patcher presets its not the real thing and it sucks that you are bound to one DAW with these kinda approaches. Insanely good video and I love that its not impossible to get a good result without learning code before 🔥

    • @olldomu5790
      @olldomu5790 4 месяца назад

      pure data is really cool too. can make VSTs with that, and also android apps, run on Pi etc.

  • @tedTV_1
    @tedTV_1 4 месяца назад

    U just uploaded the perfect video for me, thank u! 🙏

  • @VNDROID
    @VNDROID 4 месяца назад +3

    would love to see you try out max for live

  • @Nakanoi
    @Nakanoi 4 месяца назад

    Good Editing, and good Avatar :D!

  • @vesselaudio
    @vesselaudio 3 месяца назад

    Would love a Figma tutorial just for audio plugins there’s non no where please

  • @ElRacoonMusic
    @ElRacoonMusic 4 месяца назад

    Top notch!

  • @dolemerchant69
    @dolemerchant69 4 месяца назад

    i just had to do this for my final music technology assignment. i used a program called cabbage which used language Csound. (contributed to by people at my university) my plug-ins weren’t amazing but they got the job done 😂

  • @insertbrandaccountnamehere3436
    @insertbrandaccountnamehere3436 4 месяца назад

    I've spent the last year skeaming about this idea but took 0 liberties to figure it out myself. Glad you did and put me on! Excited to get around to trying this out myself!!!

  • @peroute2040
    @peroute2040 10 дней назад

    капец, я на тебя подписан но вообще перестали приходить уведомления о новых видосах, сейчас вручную зашел на канал и увидел что дофига контента вышло, чет ютуб опять прикалывается

  • @ayrtoncossa2534
    @ayrtoncossa2534 23 дня назад

    We still waiting for the tutorial for making a mixing plug-in

  • @autotune5320
    @autotune5320 3 месяца назад

    Sick!

  • @iamkonabe
    @iamkonabe 4 месяца назад +5

    An then you discover that in Bitwig Grid you can make basically everithing :D

    • @olldomu5790
      @olldomu5790 4 месяца назад +3

      then you realise youre tied to bitwig DAW. thay wasnt quite the flex you thought it was

    • @pedrolopp
      @pedrolopp 4 месяца назад

      Dumbest flex I’ve ever seen

  • @JuhoSprite
    @JuhoSprite 4 месяца назад +3

    Early gang

  • @Heisenberg2097
    @Heisenberg2097 4 месяца назад

    Nice video. Cool tool.

  • @wyasina
    @wyasina 3 месяца назад

    🔥🔥

  • @RonaldRizz
    @RonaldRizz 4 месяца назад

    Laughs in Max 4 Live
    No but for real though good vid!

  • @hundeaux
    @hundeaux 3 месяца назад

    Would be cool to add your own impulse responses for reverb

  • @cloudneverclear
    @cloudneverclear 4 месяца назад

    Well I still have to but thanks for telling me how

  • @ПлатонВостриков
    @ПлатонВостриков 4 месяца назад

    we need more!!!!
    plz

  • @nikitaromashchenko1507
    @nikitaromashchenko1507 4 месяца назад +1

    what song starts playing at 3:33 when floppa apears?

  • @ycthies
    @ycthies 4 месяца назад

    thanks for sharing

  • @xsploit
    @xsploit 4 месяца назад

    i always wanted to make a sort input from a bass to envelope follower and have it on bass so its follows the lfo of the treble bass

  • @davidzaydullin
    @davidzaydullin 4 месяца назад

    wow how did i not know about hise before. tried to make plugins with jsfx and plugdata before😭

  • @abdelrahmankhaled8239
    @abdelrahmankhaled8239 3 месяца назад +1

    plugin works fine in HISE but in ableton it just doesn't do anything. i can't figure out how to make it work. if you have any idea why it's doing this please let me know
    Edit: I was exporting it as a midi fx plugin which is incorrect for the simple reverb thing i made. you need to export as Fx plugin. IT WORKS!

  • @GamingOS
    @GamingOS 4 месяца назад

    awesome video, you definitely earned a sub from me man. would love to see a follow up where maybe you attempt something more complex, like a granular sampler or some other kind of vst instrument.

    • @glueue
      @glueue  4 месяца назад

      Thanks! Will do!

  • @Intikus
    @Intikus 4 месяца назад

    would love a lvl 2 of what code you can write to mess around with the sound, like, how does one create Grains for granulizers?

  • @stuffbyfelix
    @stuffbyfelix 4 месяца назад

    Really enjoyed the video! How did you create the 3d avatar images?

    • @glueue
      @glueue  4 месяца назад

      Thanks! I made a 3d model and posed it in blender and then just rendered it!

  • @RODEOSBOYZ
    @RODEOSBOYZ Месяц назад

    How you import vectors from figma to hise?

  • @realniyspiderman
    @realniyspiderman 3 месяца назад +1

    отличный акцент

    • @gineall
      @gineall 3 месяца назад

      гавнент

  • @mindblower113
    @mindblower113 4 месяца назад

    Thanks

  • @SIKKYBEATS
    @SIKKYBEATS 4 месяца назад

    dope

  • @artish8008
    @artish8008 4 месяца назад +2

    Наш слон, с виду видно

  • @Capjonhy13
    @Capjonhy13 2 месяца назад

    What is the software that you use to create your music?

  • @aliahxpiano
    @aliahxpiano 3 месяца назад

    What song is used in the background of the video? Its got the same break used in i really like you pt1 by sewerslvt and i've been looking for it for ages 😭

  • @JaguarPanda
    @JaguarPanda 3 месяца назад

    Are there alternatives that don't use visual scripting?
    I'm more comfortable with code and i'd like to get into vst dev (coming from gamedev).

    • @DHealey
      @DHealey Месяц назад

      You can write scripts in HISE too

  • @yousifal-dailami8687
    @yousifal-dailami8687 18 дней назад

    How long did this entire process take you?

  • @predawka
    @predawka 3 месяца назад +1

    мегахорош

  • @InaktiverUser
    @InaktiverUser 3 месяца назад

    can u explain how i cain re design an existing plugin like auto-tune? i want to change the GuI that the color changes from blue to Green, is that possible?

  • @Solanaar
    @Solanaar 4 месяца назад

    This is pretty cool! I've been wanting to make a plugin that samples video data to affect audio processing. I wonder how well HISE interacts with other libraries (been using OpenCV for image processing), but since it is based on juce it should in theory work. Right?

    • @glueue
      @glueue  4 месяца назад +1

      I think JUCE is better suited for things like this, because you can basically right anything from ground up with C++. Not really sure that HISE works with external libraries... But maybe I am wrong!

    • @Solanaar
      @Solanaar 4 месяца назад

      @@glueue Thanks for the reply! I will probably look into HISE anyways, cause it looks really fun!

  • @kamiien887
    @kamiien887 4 месяца назад

    You should have more subscribers

  • @truthkeny2388
    @truthkeny2388 Месяц назад

    Please make a sampler

  • @ChibuikeNwume-hq5yn
    @ChibuikeNwume-hq5yn 4 месяца назад +1

    Lowkey u could sell this reverb plugin for like 25$ 😭

  • @zeepster
    @zeepster 4 месяца назад

    Could have used Max DSP. it's very similar to Hise.

    • @DHealey
      @DHealey 4 месяца назад

      You can import Max patches into HISE using RNBO

  • @jtw-r
    @jtw-r 4 месяца назад

    Kinda reminds me of Reaktor, but free

  • @sweatygreasemusic
    @sweatygreasemusic 3 месяца назад

    I run the same hise project as you with some tweak, but it always crash when I open it on ableton, I might run some problem with the exporting, did you know how to fix this, please help me :(

  • @BrunodeSouzaLino
    @BrunodeSouzaLino 3 месяца назад

    Considering you are a Live user, it's strange you didn't try or mention Max or Max4Live.

  • @bosch5303
    @bosch5303 4 месяца назад

    4:55 intel inside

  • @Savon1c
    @Savon1c 4 месяца назад +1

    Yo (with rizz)

  • @Temulgeh
    @Temulgeh 4 месяца назад +19

    bro used a premade reverb and downsampler and called it his own VST 💀

    • @glueue
      @glueue  4 месяца назад +19

      True! In the end of the day I've only learnt to connect nodes... 💀

  • @oranjmix
    @oranjmix 4 месяца назад

    bruh legit asked GPT about this yesterday too

  • @remymanee
    @remymanee 3 месяца назад

    what if i want to....

  • @locopenguin6161
    @locopenguin6161 3 месяца назад +2

    ‼️‼️!!! WARNING !!! ‼️‼️Anyone using HIse please read the pricing plans is detail. Don't hurt yourself or your pocket!!!! Open source does not mean free ware!!!

  • @rindytube
    @rindytube 4 месяца назад

    Denome?

  • @flaflu82
    @flaflu82 4 месяца назад

    Try FAUST

  • @BATIOER
    @BATIOER 4 месяца назад

    3:32 id pls

    • @glueue
      @glueue  4 месяца назад

      Young Mooski - 6am (TOKYOPILL Remix)

  • @GuyPerson-jt9tv
    @GuyPerson-jt9tv 4 месяца назад

    Oh, was c++ too hard for you, you script-kitty?

  • @Gutz-po9xf
    @Gutz-po9xf 4 месяца назад

    do caralho

  • @nerazin3904
    @nerazin3904 4 месяца назад

    why you sound like polarity

    • @MaisonLexBeatz
      @MaisonLexBeatz 4 месяца назад +1

      He sounds like russian

    • @word5856
      @word5856 4 месяца назад

      @@MaisonLexBeatz he is

  • @ivanjermakov
    @ivanjermakov 4 месяца назад

    No real programming there :(

    • @glueue
      @glueue  4 месяца назад

      True... Been looking into figuring out JUCE and working with C++ lately. Will make a video talking more about coding in future.

  • @GUNTALE
    @GUNTALE 4 месяца назад

    oh so its not in c++? dislike.

  • @rodeointblud
    @rodeointblud 3 месяца назад

    Nice video but a terrible idea. Unless you make it for your own needs it’s pretty useless. VST market is about to collapse because it’s so much shit out there already and you only need like a fabfilter bundle.

  • @JazJazgot
    @JazJazgot 4 месяца назад +1

    Try CLAP next time. VST is a dead standard.

  • @moritz8727
    @moritz8727 Месяц назад

    How did you make the Knobs in Figma😭 btw really nice video, with a lot of effort in it🤘🏻🫶🏼

  • @pintererestthot
    @pintererestthot 4 месяца назад

    love it and yes please help us make plugins

  • @System-1541
    @System-1541 День назад

    How did you merge the images into one strip? What file format is that strip? What pixel size does it have to be?

  • @Jasohn
    @Jasohn 18 часов назад

    Why does no one explain how to export plugins in this program? No matter how much I search and search, no one explains how to export a plugin in vst, vst3 or aax. Can it be exported in this program or not?