HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. giftlift
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 31
    • Groups 0

    giftlift

    @giftlift

    37
    Reputation
    146
    Profile views
    31
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    giftlift Unfollow Follow

    Best posts made by giftlift

    • RE: Merry Christmas

      Happy Holidays!!

      posted in General Questions
      giftliftG
      giftlift
    • RE: Happy New Year Everyone!

      Happy New Year!!🥳🎆🎉🥂

      posted in General Questions
      giftliftG
      giftlift
    • RE: Create lottie files without After Effects (blender)

      Hello all!
      It indeed seems limited in blender. The only way I could make a decent animation was in edit mode in 2d animation, and I had to record frame by frame.
      I'm completely new to blender so I was just trying everything.
      I also installed the optional dependencies, so that might have helped.
      There are some cool scripts included, if your good with python.
      There is also a plug-in for inkscape.

      But none of that matters because this all is a fork of the new lottie export plug-in for synfig, and if you don't feel like building synfig (me)?
      https://www.synfig.org/2019/12/27/whats-coming-to-synfig-1-4-0-part-2/
      This post says they will release a dev version this week with lottie export functionality! They are also creating a documentation of the lottie format :)
      Just thought I'd pass along the info.
      Thanks and Happy New Year!!

      posted in General Questions
      giftliftG
      giftlift
    • RE: multi input for sidechain/ducking

      I am happy to report that I got it working!! 4 inputs into a compiled vst and did processing and interaction on/between both channels!! Testing some things and I'll have more to post (:

      posted in General Questions
      giftliftG
      giftlift
    • Auto 3D Knob design

      Found this knob building script: https://www.thingiverse.com/thing:54024
      Its for OpenSCAD, a simple cross platform cad program.
      Super easy, just open and edit the script in openscad, saving auto updates the 3d image.
      Then export as an svg and do your thing in Blender!
      Also, just searching for knobs on thingiverse is a good resource.
      Here's an example of using the script... have phun evryone :)
      63445584-db3e-475d-9ca8-5952171d49f2-image.png

      posted in General Questions
      giftliftG
      giftlift
    • RE: Collaborative project!

      Great job y'all!
      https://bedroomproducersblog.com/2020/04/10/sampleson-collab3/

      posted in General Questions
      giftliftG
      giftlift
    • Create lottie files without After Effects (blender)

      Just found this last night https://gitlab.com/mattia.basaglia/tgs/
      It has a addon for blender that lets you export lottie files :) I have exported some basic animations but haven't had time to try them in hise yet.

      ~This is how to set it up~
      I'm on a Windows 10 box
      Add the "tgs_io" folder found here
      https://gitlab.com/mattia.basaglia/tgs/tree/master/addons/blender
      to your blender addons folder.
      (Running import addon_utils; print(addon_utils.paths()) in the blender python console will locate your addon folder)
      Mine is C:\Program Files\Blender Foundation\Blender 2.81\2.81\scripts\addons

      Next open the cmd as admin and cd to the blender python exe.
      Mine is C:\Program Files\Blender Foundation\Blender 2.81\2.81\python\bin
      Then run python.exe -m pip install tgs

      Open blender
      go to edit>preferences>addons and check the box next to
      Import-Export: Lottie/TGS Export

      That's it, let me know if any of y'all figure out anything cool!

      posted in General Questions
      giftliftG
      giftlift
    • RE: multi input for sidechain/ducking

      Sorry its taken so long to get back, my girly is 38 weeks pregnant, so yay!
      I changed a lot of stuff, and I've been going through and seeing what is necessary and what isn't, but that's taking a long time. So here is what I have so far.
      I'll update this as/if I figure more things out: Naming channels, dif input/output configs n stuff like that.

      I'm using scriptnode standalone
      only compiling fx plugins as vst3s

      Again not sure if every edit is necessary but this is working right now

      In "hi_core\hi\core\MainController.cpp"
      change line 745 to this

      const bool isUsingMultiChannel = multiChannelBuffer.getNumChannels() > 4;
      

      And add these two lines after line 754

      FloatVectorOperations::copy(thisMultiChannelBuffer.getWritePointer(2), buffer.getReadPointer(2), numSamplesThisBlock);
      FloatVectorOperations::copy(thisMultiChannelBuffer.getWritePointer(3), buffer.getReadPointer(3), numSamplesThisBlock);
      

      Then add these two lines after line 764

      FloatVectorOperations::add(buffer.getWritePointer(2), thisMultiChannelBuffer.getReadPointer(2), numSamplesThisBlock);
      FloatVectorOperations::add(buffer.getWritePointer(3), thisMultiChannelBuffer.getReadPointer(3), numSamplesThisBlock);
      

      And these two after 788

      FloatVectorOperations::copy(multiChannelBuffer.getWritePointer(2, 0), previewBuffer.getReadPointer(2, previewBufferIndex), numToPlay);
      FloatVectorOperations::copy(multiChannelBuffer.getWritePointer(3, 0), previewBuffer.getReadPointer(3, previewBufferIndex), numToPlay);
      

      Then these two after 831

      FloatVectorOperations::add(buffer.getWritePointer(2), thisMultiChannelBuffer.getReadPointer(2), numSamplesThisBlock);
      FloatVectorOperations::add(buffer.getWritePointer(3), thisMultiChannelBuffer.getReadPointer(3), numSamplesThisBlock);
      

      Then change line 985 to this

      getMainSynthChain()->getMatrix().setNumDestinationChannels(4);
      

      Now save that file and open "hi_core\LibConfig.h"
      change line 45 to this

      #define HISE_NUM_PLUGIN_CHANNELS 4
      

      Save that file and open "hi_dsp\routing.cpp"
      change line 37 to this

      numSourceChannels(4),
      

      Save that and re/compile hise

      This last file you can change without having to recompile hise
      Ignore the edits to this file in my previous post, just
      open "hi_dsp\plugin_parameter\PluginParameterProcessor.h"
      and change line 110 to

      return true;
      

      Save that and your ready to go.

      For routing the master chain is connected like this
      routing.jpg
      And I've only tested this so far in scriptnode and SNEX,
      make sure your node channels are set to 4.

      Update us if any of y'all figure out anything new
      ~thanks~

      posted in General Questions
      giftliftG
      giftlift
    • RE: Drum Sampler first steps

      @Vol-Man Yes it def can! Check out the docs https://docs.hise.audio/ and the example projects https://github.com/christophhart/hise_tutorial :)

      posted in General Questions
      giftliftG
      giftlift
    • RE: multi input for sidechain/ducking

      I managed to compile a vst with 4 inputs, but the second stereo input doesn't pass audio through the compiled plugin.

      I changed 2 lines in "hi_dsp\plugin_parameter\PluginParameterProcessor.h"
      (You can edit this file without having to recompile hise)

      adding this to the end of line 81
      .withInput("Sidechain", AudioChannelSet::stereo());

      and changing line 110 from this
      return (layouts.getMainInputChannels() == 2 && layouts.getMainOutputChannels() == 2);

      to this
      return (layouts.getMainInputChannels() == 4 && layouts.getMainOutputChannels() == 2);

      Now I just need to get the extra inputs to map to inputs 3 and 4 of the master chain. Like the first two are mapped to channels 1 and 2.

      I'm only trying this with fx plugin generation.

      Any ideas or a pointer or anything would be much appreciated... ~help

      posted in General Questions
      giftliftG
      giftlift

    Latest posts made by giftlift

    • Auto 3D Knob design

      Found this knob building script: https://www.thingiverse.com/thing:54024
      Its for OpenSCAD, a simple cross platform cad program.
      Super easy, just open and edit the script in openscad, saving auto updates the 3d image.
      Then export as an svg and do your thing in Blender!
      Also, just searching for knobs on thingiverse is a good resource.
      Here's an example of using the script... have phun evryone :)
      63445584-db3e-475d-9ca8-5952171d49f2-image.png

      posted in General Questions
      giftliftG
      giftlift
    • RE: Collaborative project!

      Great job y'all!
      https://bedroomproducersblog.com/2020/04/10/sampleson-collab3/

      posted in General Questions
      giftliftG
      giftlift
    • RE: SNEX and interpolation

      @ustk, have you tried it with else?

          else
          {
            count++;
            mu = (float)(count / 2000);
            // Linear Interpolation
            val = old * (1.0f - mu) + newVal * mu;
            return val;
          }
      posted in General Questions
      giftliftG
      giftlift
    • Simple scriptnode volume meter

      Is there a way to make this work, or is it not possible yet?

      HiseSnippet 1418.3oc6X87baSDEdkc11D2RgNEt6omRmIjwllRYFlgHxOLiGpSEwog1Sc1HswdGKsqPZcRL+3DW3FmKWfabkq8.yj+A5o9WA2x+Ak2SqrsrkZqiYJAXvm7918s5aeu2229jbhTt73XUDwZo8FDxIVWk1dfT2cytLgjzbKh00nsXwZdTUioMFDxhi4dDKqxeFZvZoEHI+Na8MX9LoKerIBYekvkeOQfPO1pi8mK78av736IBxr50ra5pjap7U8A7TlViDxb6w5v2ggKqDkXcos8DZUTaMSyiIVKrgxaP6tpikl0uuHVbfOGGTmzF1Hi4FJeODwnUxlcE9dNCO2wDXWbFGEJahBuKskvSLx93nw6jLQ0wdjMdXU5UAu5YgWsYGdVYf2BF3ccZa2HQnd7LH1tBsoDRTGxfTPVXYVKw5T5lJXAR8pArd7FQvfQNr7cpUakpqUq1s93C6Kc0BkrpRtiRyuub4aU4aprTkuqR0om5vCKbN7wDo784QENMl0idUNtrrevA7nUpdDyuOezBgi+jwW5KO9lM86ZN0YVnR1TJz2OjKeYQcRZnBi+onBVpNI5eszneaegGOhHff7hziT98gpzDDmk.PdPysXZ1v8A1R3wDxizB7DXsE+HffXxpKQ2hG2SqBSVaPnRh.vpxq+odx3mXO6AiFX+E1gCOSM8R31IaQ0FOrNvsh.ZEj9wYn3NQh0CvnWE59H9bY9jiEd5ti2OG6tbQmti4x1BaPaHrs3qGdn+km7jmtNIeIKPbTd88Y5IYSnDR5DPIvDksXsoLVnGjUh4MBEaVg60oNBsa2hwaoBvKj0eSi2TAq2ht8gGxc0iA6BzFO7hQcpRZYF77QfLQUWQ5R+Js51xNBIeU2HNfsshC2gqOVE0a4a52+nalQRJLhC0s78TN9rAKGyBB846BtrR0C7Ut8v5v75JobfMvUrraWlTx8imG4mot8o7rI+TP9aWUesP1oESGI.tKcm9AsgK8b4alhNvlUITExLtFNFKmZykdICdA7Kcx53XqzIqObxwBXjzfYR1J8+v+vTCkBwWzpxC4uMXtvwafCC47Wmh5lP0DOZU2QUUWB8nNA.7zP8dPzcByVkwsc304F7CxZAIhZvk4o++KMRLTqUfUXJO1Exq3kDshy1b.FocFJZg6eIySH4JbyIXQS8lJ1EZv.4tjbGoH9pYl9h3bXUdr.xdrnNbcJkd3sBFRENBjRJiGoknOHliMdP12b+hUYm9G3Kbw+QxDTf0OZD3VS4QvtXXasDx8m9xoVrSlx1h12ScLOZpN1fawBCyYcQ61Sp8mnP2tG+XSTOqUSsSKLKkCEjYGxqYmCx+vyKDxqYW.jg0lEx+zSveOcJH+ru8Ot62G7r0MsT0Hh+U84R2AjbP4bf6yVOentVg39r0KJTW6bFpuZBtqtKVjQxgERF1xkoc.tc8IIJWwPTvY9mJEozTTjqR2kGy0lyZtRrrrkI86sQp0r5ZVhVoYO6+nSym8wnX9r+iNsnrOHs+ZqZ+D2e+Yc9s2y1PzRdyrQOwZ2F+ciSI+kzFr+wYWa.V6qGxuXvO6bisddJQqcfRo6B2JV.QK89IyYKjy5UX4ZxDWDkqSzkUQktVVSaDJXQLf8dmdkpS99wue3nFpFVdtsjAsXj1u44Ub+r0mcwcPcYTBjRqsJzQSgpMaeBzSVbL1LLF5lfiLAiMqnykRDc9eMm+Cq4Lbu+WqlyDAdqLmhKa5bFInyJsa1nR46YHmnAzyK9YDj7jWYIGEad9VC+s7xHAL2H0icMueEFPWLwBvGjIeauknsvwUqO7CnfwoZj.nk2G65huL66Cu8Yw97AygO2dN7Ys4vm6LG97gygO2cN74idk9fuswm1WqBLenCvfy1IEWVViuCpL4Ows4NS.
      

      The knob responds to sound within scriptnode but not on the interface..
      Thanks

      posted in General Questions
      giftliftG
      giftlift
    • RE: Happy New Year Everyone!

      Happy New Year!!🥳🎆🎉🥂

      posted in General Questions
      giftliftG
      giftlift
    • RE: Create lottie files without After Effects (blender)

      Hello all!
      It indeed seems limited in blender. The only way I could make a decent animation was in edit mode in 2d animation, and I had to record frame by frame.
      I'm completely new to blender so I was just trying everything.
      I also installed the optional dependencies, so that might have helped.
      There are some cool scripts included, if your good with python.
      There is also a plug-in for inkscape.

      But none of that matters because this all is a fork of the new lottie export plug-in for synfig, and if you don't feel like building synfig (me)?
      https://www.synfig.org/2019/12/27/whats-coming-to-synfig-1-4-0-part-2/
      This post says they will release a dev version this week with lottie export functionality! They are also creating a documentation of the lottie format :)
      Just thought I'd pass along the info.
      Thanks and Happy New Year!!

      posted in General Questions
      giftliftG
      giftlift
    • Create lottie files without After Effects (blender)

      Just found this last night https://gitlab.com/mattia.basaglia/tgs/
      It has a addon for blender that lets you export lottie files :) I have exported some basic animations but haven't had time to try them in hise yet.

      ~This is how to set it up~
      I'm on a Windows 10 box
      Add the "tgs_io" folder found here
      https://gitlab.com/mattia.basaglia/tgs/tree/master/addons/blender
      to your blender addons folder.
      (Running import addon_utils; print(addon_utils.paths()) in the blender python console will locate your addon folder)
      Mine is C:\Program Files\Blender Foundation\Blender 2.81\2.81\scripts\addons

      Next open the cmd as admin and cd to the blender python exe.
      Mine is C:\Program Files\Blender Foundation\Blender 2.81\2.81\python\bin
      Then run python.exe -m pip install tgs

      Open blender
      go to edit>preferences>addons and check the box next to
      Import-Export: Lottie/TGS Export

      That's it, let me know if any of y'all figure out anything cool!

      posted in General Questions
      giftliftG
      giftlift
    • RE: Merry Christmas

      Happy Holidays!!

      posted in General Questions
      giftliftG
      giftlift
    • RE: Calculate gain at specific frequency?

      Maybe -- split signal > bandpass > compressor > clear.
      Then the threshold is the modulation amount by connecting what ever you want to the gain reduction meter?
      Haven't tried this, just a thought :)

      posted in Scripting
      giftliftG
      giftlift
    • RE: Drum Sampler first steps

      @Vol-Man Yes it def can! Check out the docs https://docs.hise.audio/ and the example projects https://github.com/christophhart/hise_tutorial :)

      posted in General Questions
      giftliftG
      giftlift