HISE Logo Forum
    • Categories
    • Register
    • Login

    Video Tutorials

    Scheduled Pinned Locked Moved Documentation
    37 Posts 6 Posters 19.2k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • W
      Win Conway
      last edited by

      haven't watched these yet, but wanted to say thank you for this effort, i am holding out to watch them all in on go a 100 times when you get to UIs and compiling plugins and so on.
      very much appreciated :)

      1 Reply Last reply Reply Quote 1
      • Christoph HartC
        Christoph Hart
        last edited by

        A quick thank you present (I think you have requested this a few times, but I forgot to add it): I just implemented support for loading scripts from a global location:

        include("{GLOBAL_SCRIPT_FOLDER}myScript.js");
        

        The wildcard GLOBAL_SCRIPT_FOLDER will be resolved to the scripts subfolder of the AppData directory, (which I changed from "Hart Instruments" to "HISE" in the last commits BTW). So on Windows, just put your global scripts here:

        C:/User/Username/AppData/Roaming/HISE/scripts/
        

        and on OS X:

        ~/Library/Application Support/HISE/scripts/
        

        Compiled plugins will embed these scripts just as they if they were in the project folder.

        1 Reply Last reply Reply Quote 1
        • d.healeyD
          d.healey
          last edited by

          Awesome, thanks!

          Libre Wave - Freedom respecting instruments and effects
          My Patreon - HISE tutorials
          YouTube Channel - Public HISE tutorials

          1 Reply Last reply Reply Quote 0
          • d.healeyD
            d.healey
            last edited by

            Tutorial 3: Using Multiple Dynamic Layers - Velocity mapping, Round Robin, and CC Crossfading

            Libre Wave - Freedom respecting instruments and effects
            My Patreon - HISE tutorials
            YouTube Channel - Public HISE tutorials

            1 Reply Last reply Reply Quote 2
            • Christoph HartC
              Christoph Hart
              last edited by Christoph Hart

              Excellent! You really got a profound understanding of the HISE concept over the time :)

              I have only a few remarks:

              1:27: use Velocity Spread and Custom to map them automatically
              2:51: you can use the auto select feature (the mouse arrow icon on the sample editor) to select the currently played sample. I am using this feature to tune the samples (it actually feels like tuning a real instrument this way)

              Also, there is another solution to both having dynamic XF as well as Round Robins which doesn't involve using multiple samplers: You can use the velocity layers as dummy RR groups:

              /** Velocity 2 Round Robin script
              *   Cycle through velocity layers in case you can't use RR logic
              */
              
              reg rrIndex = 0;
              reg rrVelocityValues = [10, 60, 100];
              
              function onNoteOn()
              {
                  rrIndex = (rrIndex + 1) % rrVelocityValues.length;
                  Message.setVelocity(rrVelocityValues[rrIndex]);
              }
              
              function onNoteOff() {}
              function onController() {}
              function onTimer() {}
              function onControl(number, value) {}
              

              In most scenarios you are not using the velocity information for dynamic crossfades so this might work (Although if you need it for something else like modulation the sample start you'll have to hack around a bit by eg. putting the real velocity into an array modulator before changing it).

              Also I was thinking about optimizing the XFade performance by checking if the Fade value is zero each buffer and skipping rendering of the silent channel to save CPU cycles (it still has seek & stream the samples to stay in sync)

              1 Reply Last reply Reply Quote 1
              • Christoph HartC
                Christoph Hart
                last edited by

                BTW, would you agree if I put up these videos on the main website (under something like Video Tutorials)? You'll get credited of course, but I think these videos will help people learn HISE much more easily.

                1 Reply Last reply Reply Quote 1
                • d.healeyD
                  d.healey
                  last edited by

                  Oh yeah that would be great :)

                  Libre Wave - Freedom respecting instruments and effects
                  My Patreon - HISE tutorials
                  YouTube Channel - Public HISE tutorials

                  1 Reply Last reply Reply Quote 0
                  • Christoph HartC
                    Christoph Hart
                    last edited by

                    There you go:

                    Link Preview Image
                    HISE

                    favicon

                    (hise.audio)

                    Thanks again for doing this!

                    1 Reply Last reply Reply Quote 1
                    • LindonL
                      Lindon
                      last edited by

                      Dave, let me add my thanks too. Well done.

                      HISE Development for hire.
                      www.channelrobot.com

                      1 Reply Last reply Reply Quote 1
                      • Christoph HartC
                        Christoph Hart
                        last edited by

                        BTW before you tackle multimic handling, I would like to improve the workflow of merging as the current one is a little bit too hacky (and fails pretty quickly if the file name scheme isn't perfect). If you have any suggestions, let me know - I think you used that feature more often than me by now :)

                        1 Reply Last reply Reply Quote 0
                        • d.healeyD
                          d.healey
                          last edited by

                          I've not yet found any problems with the multi-mic handling, except for the ones you already helped me solve, I think it's quite straightforward. The only related area where I've found limitations is with some of the effects not being multi-channel too.

                          Libre Wave - Freedom respecting instruments and effects
                          My Patreon - HISE tutorials
                          YouTube Channel - Public HISE tutorials

                          1 Reply Last reply Reply Quote 0
                          • d.healeyD
                            d.healey
                            last edited by

                            Just a quick update. I've been busy for the past few months with decorating a house, building Kontakt libraries and doing other bits and bobs and haven't had chance to make any more videos. However I'm finishing off my first major HISE project and will be finished decorating next week so should have some free time. I have a lot of tutorial videos planned...

                            Libre Wave - Freedom respecting instruments and effects
                            My Patreon - HISE tutorials
                            YouTube Channel - Public HISE tutorials

                            1 Reply Last reply Reply Quote 3
                            • Christoph HartC
                              Christoph Hart
                              last edited by

                              Awesome. Do you have an idea what topic you'll cover next?

                              1 Reply Last reply Reply Quote 0
                              • d.healeyD
                                d.healey
                                last edited by

                                Probably some scripting basics, like callbacks.

                                Libre Wave - Freedom respecting instruments and effects
                                My Patreon - HISE tutorials
                                YouTube Channel - Public HISE tutorials

                                1 Reply Last reply Reply Quote 1
                                • Christoph HartC
                                  Christoph Hart
                                  last edited by

                                  Great idea. If you do this, make sure that you recommend the new control callback way with passing inline functions in setCustomControlCallback because this is really a better programming style than the old big switch statement in the onControl callback (it will stick around but can be considered a bit deprecated).

                                  1 Reply Last reply Reply Quote 0
                                  • d.healeyD
                                    d.healey
                                    last edited by

                                    I do like the on control callback because it keeps everything in one place but I can see the new system being useful for larger scripts. I shall include both in the video :)

                                    Libre Wave - Freedom respecting instruments and effects
                                    My Patreon - HISE tutorials
                                    YouTube Channel - Public HISE tutorials

                                    1 Reply Last reply Reply Quote 0
                                    • d.healeyD
                                      d.healey
                                      last edited by

                                      A quick little video showing how editing the user preset xml files in a text editor can be a time saver.
                                      https://youtu.be/sjKkHiHlWuY

                                      Libre Wave - Freedom respecting instruments and effects
                                      My Patreon - HISE tutorials
                                      YouTube Channel - Public HISE tutorials

                                      1 Reply Last reply Reply Quote 1
                                      • d.healeyD
                                        d.healey
                                        last edited by

                                        I've just updated the (quite out of date) video tutorials page with some of my more recent videos.

                                        Libre Wave - Freedom respecting instruments and effects
                                        My Patreon - HISE tutorials
                                        YouTube Channel - Public HISE tutorials

                                        hisefiloH 1 Reply Last reply Reply Quote 6
                                        • ustkU
                                          ustk
                                          last edited by

                                          @d-healey You rock David 👏

                                          Can't help pressing F5 in the forum...

                                          1 Reply Last reply Reply Quote 0
                                          • Christoph HartC
                                            Christoph Hart
                                            last edited by Christoph Hart

                                            I just thought someone hacked the website but then I remembered I gave you write access to the docs repo ;)

                                            1 Reply Last reply Reply Quote 2
                                            • First post
                                              Last post

                                            50

                                            Online

                                            1.7k

                                            Users

                                            11.7k

                                            Topics

                                            102.1k

                                            Posts