HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. clumsybear
    3. Best
    C
    • Profile
    • Following 3
    • Followers 1
    • Topics 26
    • Posts 187
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Course recommendations for learning C++?

      @SteveRiggs Here are a couple of courses I encountered on my search for more DSP and C++ for Audio resources:

      Kadenze - Advanced Audio Plugin Development with C++ in Juce (by Output)
      https://www.kadenze.com/programs/output-teaches-creating-audio-plugins-with-c-and-juce
      Not sure about the content quality, but it seems ok for beginners. The Basic Course is free btw...

      Hack Audio - Creating Audio Plugins with JUCE
      https://www.hackaudio.com/juce-tutorial/juce-info/?wlfrom=%2Fjuce-tutorial%2F
      Purchased it, but it's very basic tbh.

      However the Hack Audio DSP book is quite interesting:
      Hack Audio: An Introduction to Computer Programming and Digital Signal Processing in MATLAB
      https://www.amazon.com/Hack-Audio-Engineering-Society-Presents/dp/113849755X

      The DSP courses on Coursera are good as well. they are mostly free, so it doesn't hurt to take a look at them.

      posted in General Questions
      C
      clumsybear
    • RE: Scriptnode no opening the juce file

      @ustk said in Scriptnode no opening the juce file:

      Here's a monologue between me and myself:

      Oh my, how many of those monologues I had on here... mostly me and myself solved the problem because the topic was in general about human error in scripting and stuff

      posted in General Questions
      C
      clumsybear
    • RE: Bypass

      That would be a nice feature @ustk

      I‘m always struggling with the placement of the bypass switch on my GUI. In logic for example there is a big bypass button directly above my desired placement, so my bypass would be obsolete

      Tbh I‘m not even sure when I used the plugins bypass instead of the bypass on the DAWs the last time

      posted in General Questions
      C
      clumsybear
    • RE: Scriptnode no opening the juce file

      @ulrik I think that’s the projucer HISE uses to build the plugins.

      posted in General Questions
      C
      clumsybear
    • RE: What's your vector UI design workflow?

      Thanks 😊 @d-healey

      posted in General Questions
      C
      clumsybear
    • RE: Anything in scriptnode for saturation/distortion?

      math.tanh is useful for uneven harmonics. but basically everything that clips the input should result in uneven harmonics. Even harmonics are a bit complicated to generate but can sound more pleasant @SteveRiggs It depends on what you're trying to achieve.

      posted in General Questions
      C
      clumsybear
    • RE: Finally: Fully customize stock UI elements with a scripted LookAndFeel

      @d-healey said in Finally: Fully customize stock UI elements with a scripted LookAndFeel:

      @Dalart

      Yeah I found it in scriptnode, now to find some tutorials or something to learn how to do this paint stuff.

      https://www.patreon.com/davidhealey ;)

      I can recommend @d-healey s paint routine videos :)

      posted in General Questions
      C
      clumsybear
    • RE: Frequency Shifter

      @Christoph-Hart Did you happen to find time to implement the FIR module?

      posted in General Questions
      C
      clumsybear
    • RE: Drawing Sine Waves

      Yeah @ustk the sinevibes plugins have awesome visualisations. I'm still learning to draw by code, so the sinevibes are great examples. And the devs are real dsp wizards :D

      posted in General Questions
      C
      clumsybear
    • RE: What's your vector UI design workflow?

      thanks @briandoliveira I looked into sketch and after effects. really like sketch for its simplicity, I was able do redesign all my Interfaces within a couple of hours.

      since I'm not fully into Lottie right now, I'd like to export png sequences without after effects if possible.
      so, I digged around and found a way to export PNG Sequences directly from sketch: http://animatemate.com and successfully merged them with ImageMagick to a filmstrip.

      @briandoliveira I'm experiencing issues with drop shadows while exporting layers from sketch to after effects. The shadows are reset to AE native settings which messes with the whole (although minimalistic) skeuomorphic design. Any idea on how to solve this? I'm using the sketch2AE plugin by google.

      posted in General Questions
      C
      clumsybear
    • RE: What's your vector UI design workflow?

      what I still don't understand is how to get a knob designed in Illustrator or any other vector based program into the Hise environment and control it. I assume that the paths have to be converted here as well. Are the value indicators of the controls also taken from Illustrator as they were designed, or do they have to be regenerated via paint routines?

      posted in General Questions
      C
      clumsybear
    • What's your vector UI design workflow?

      I'm thinking about integrating vector based ux design for my plugins.

      How do you go about that? As far as I know, JUCE has some kind of SVG converter that we can use to convert the vectors into drawing paths for HISE

      What vector design app do you use for GUI, anything worth checking out?

      What is your vector GUI design workflow in general?

      posted in General Questions
      C
      clumsybear
    • RE: Installers

      I checked some traffic of developer sites and was surprised to see that approx 15% of the traffic comes from some shady sites and leads to PayPal :)

      posted in General Questions
      C
      clumsybear
    • RE: Finally: Fully customize stock UI elements with a scripted LookAndFeel

      Probably the latest, not sure if it’s on the scriptnode or the development branch though. You can always check the change log of the branches

      posted in General Questions
      C
      clumsybear
    • RE: Apple Dev Enrollment Time

      Yes, I am aware of the situation, but since Catalina's new security measures have arrived, it would make sense for Apple to check the developers' machine IDs so that they can be sure that their closed environment is safe and clean, which wouldn't be such a problem for Apple.

      But yes.... maybe not, who knows. In the end, I'm still using their operating system to deliver something for macOS that should be enough commitment to Apple :)

      posted in General Questions
      C
      clumsybear
    • RE: Apple Dev Enrollment Time

      @gorangrooves You need it to sign your installers and apps for macOS. It is a mandatory security standard since macOS Catalina, as I understand it.

      posted in General Questions
      C
      clumsybear
    • RE: Can you export LFO as an fx plugin?

      Like @d-healey said
      @TNTHM you can modulate almost any parameter within the HISE environment. But you can’t use a exported HISE FX plugin to modulate parameters of a DAW as far as I know.

      So if you’re trying to do a simple volume chopper for example you can always modulate the gain parameter of a Gain module in HISE. Same goes for Pan or whatever.

      posted in General Questions
      C
      clumsybear
    • RE: Course recommendations for learning C++?

      @Christoph-Hart said in Course recommendations for learning C++?:

      I might add something like a container.fft node later, but it's not trivial to do so because the output format of the FFT (how imaginary and real parts are arranged in memory, how they are scaled, etc) depends heavily on what you want to do with it, so there's no easy solution.

      Now, that would be an awesome dsp module and would make HISE a almost complete DSP playground :) Especially because most of the stuff I want to create is not really possible without FFT processing.

      When do you think we can expect the FFT container? @Christoph-Hart

      posted in General Questions
      C
      clumsybear
    • RE: airwindows dither in snex

      @giftlift

      ah, I see the SNEX awesomeness begins. Can't help you with the code unfortunately... anyway, I have to learn snex and dsp eventually.

      posted in General Questions
      C
      clumsybear