HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. pcs800
    3. Topics
    • Profile
    • Following 0
    • Followers 0
    • Topics 47
    • Posts 281
    • Groups 0

    Topics

    • pcs800P

      Convolution reverb wet level seemingly not working

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      17
      0 Votes
      17 Posts
      260 Views
      pcs800P

      @d-healey Yes i have such a thing already going. I guess I forgot to ad this one.

    • pcs800P

      Faust tutorial videos

      Watching Ignoring Scheduled Pinned Locked Moved Faust Development
      4
      0 Votes
      4 Posts
      97 Views
      A

      @pcs800 the best faust tutorials are unfortunately reading the source code of the library effects. Find it on github. Feed the main syntax docs into a good LLM like o3 or Gemini Pro, then ask it questions about the specific library effect that you're reading.

      Of course, read the whole syntax reference yourself first.

    • pcs800P

      Limiter reduction parameters

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      119 Views
      ChazroxC

      @pcs800 also…Sometimes Console.print();-ing helps me find what something is doing. You can pretty much .print anything. Console. Print(); then just start moving stuff and playing stuff and see what happens.

    • pcs800P

      Error in visual studio when building hise

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      61
      0 Votes
      61 Posts
      1k Views
      pcs800P

      @d-healey Oh.... too late. I already deleted and redownloaded, etc. Building again now.

    • pcs800P

      I am unable to get an AudioAnalyser to display in a floating tile

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      80 Views
      ChazroxC

      @pcs800 I think thats been happening for a while now. I've resorted to just using scriptnodeFX, add your analyser there, then I believe you can hook up a floating tile analyser via the property editor in the same way and that should be more stable.

    • pcs800P

      Sticky knobs

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      30
      0 Votes
      30 Posts
      609 Views
      d.healeyD

      @pcs800 No worries, it will help the next person who gets here :)

    • pcs800P

      Slider issue

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      12
      0 Votes
      12 Posts
      372 Views
      dannytaurusD

      @Chazrox said in Slider issue:

      @pcs800 Did u look into LAF for this? You can animate that slider cap still image with this easily. Lets say in your case you have the slider cap and the background image… import both images into your LAF function, draw the background image as still, then animate only the slider cap for current value. Its 2 parts (images) and 0 frames.

      Start with a vertical slider, create a Laf, import your two images then use g.drawImage to use your images in your LAF. Im on my phone right now so when I get on the computer I can show you an example. It's pretty friggin simple.

      Definitely this 👆

      @pcs800 Sounds like you might be making it a lot harder than it needs to be.

    • pcs800P

      LimiterReduction parameter

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      119 Views
      HISEnbergH

      @pcs800 If my memory serves me correct I believe this HISE tutorial shows you how to display compression amount:

      Link Preview Image hise_tutorial/DynamicsFX at master · christophhart/hise_tutorial

      The Tutorial project for HISE. Contribute to christophhart/hise_tutorial development by creating an account on GitHub.

      favicon

      GitHub (github.com)

    • pcs800P

      Curve type in a parametric

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      142 Views
      d.healeyD

      Ah ok I see the issue. I assume you're connecting the button to the module through processor/parameter ID? The button only has two states, 0 and 1, so it will only change the Type parameter between those two values.

      If you want it to cycle through more values you'll need to handle it through scripting by using a variable as a counter and increasing it each time the button is clicked, resetting when you get to the max (4) and passing the value to the EQ's Type attribute.

      If your EQ has more than one band you'll need to use the band offset to select which band is affected by the button - forum search for "band offset".

    • pcs800P

      Impulse Response loader

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      110 Views
      d.healeyD

      @pcs800 If you delve into the file and file system APIs you can add a button to open a file browser to allow users to select a IR.

      Or if you want a simpler solution you can add a waveform control to your UI, connect it to your effect, and then users can just drag/drop an IR onto it.

    • pcs800P

      Faust installation

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      200 Views
      pcs800P

      @d-healey I figured it out and it's compiling now, thanks! :-)

    • pcs800P

      Errors when exporting to vst3

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      307 Views
      pcs800P

      @Lindon yeah just experimenting. You have to try things to figure out what they do :-)

    • pcs800P

      Demo mode and registration

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      1 Votes
      6 Posts
      474 Views
      LindonL

      @ustk said in Demo mode and registration:

      But you’ll need to make the Unlocker part in your project anyway (unless Hise Activate also comes with a ready made script?)

      It does.

    • pcs800P

      De-Essing

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      734 Views
      LindonL

      @pcs800 said in De-Essing:

      @Lindon Ok, i created the script fx node, added a dsp network, added the filters and a compressor.
      How do I control the threshold of the compressor from a knob in the ui?

      create a knob in the script node - connect it to the threshold of your compressor...

      Heres a picture of a flanger with one such control set up;

      e426e7de-e15a-4915-bc9c-ea76fa9b1953-image.png

      use a .setAttribute call in your UI's slider callback

    • pcs800P

      I want a Filter at the end of my FX chain

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      327 Views
      d.healeyD

      @pcs800 Put your module within a container and add the filter to the container's effect chain.

    • pcs800P

      Script FX module in properties panel

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      399 Views
      d.healeyD

      @pcs800 You'll see different things there depending on which node you click on

    • pcs800P

      The delay module temposync slider popup

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      34
      0 Votes
      34 Posts
      6k Views
      pcs800P

      @d-healey I've scrapped this project

    • pcs800P

      Finding the range of HPF and LPF in the delay module

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      302 Views
      pcs800P

      @d-healey Thanks

    • pcs800P

      Why does this project refuse to save correctly?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      261 Views
      HISEnbergH

      @pcs800 The autosave is a .hip file, it's just a backup.

      The .xml should be save in XmlPresetsBackUp. Even still, select File and you can load the xml or open recent and load the xml from there...