HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Tania Ghosh
    3. Posts
    • Profile
    • Following 0
    • Followers 0
    • Topics 54
    • Posts 450
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: HISE all listed shortcuts

      @DabDab said in HISE all listed shortcuts:

      Can I get all possible shortcuts for HISE workflow ?
      Yesterday I accidentally clicked some keys (don't remember) a Find Replace kind of window opened. What is the shortcut ?

      I guess you pressed Ctrl+F.

      posted in General Questions
      Tania GhoshT
      Tania Ghosh
    • RE: How to Customize Audio Waveform CTI with LAF

      @d-healey said in How to Customize Audio Waveform CTI with LAF:

      Probably drawTableRuler

      @DabDab I guess it is drawThumbnailRuler

      posted in Feature Requests
      Tania GhoshT
      Tania Ghosh
    • RE: FAUST/Scriptnode SAW Unison/Supersaw

      @DabDab Although it might not sound like Access Virus or Roland Supersaw/Hyper Saw , but yup you can make decent Saw unison by FAUST, ScriptNode etc. Here is the example... if you like let me know , I will make a tutorial and Snippet.
      https://www.youtube.com/watch?v=7OJs_cQFIwk

      posted in General Questions
      Tania GhoshT
      Tania Ghosh
    • RE: FAUST Channel Mismatch, how to tackle it ?

      @DabDab

      try this...

      process = wa.bandpass2(f0, Q, dtune) , wa.bandpass2(f0, Q, dtune) ;
      

      double.jpg

      posted in Faust Development
      Tania GhoshT
      Tania Ghosh
    • FAUST & HISE Video Tutorials & HNY 2023

      Happy New Year 2023 to all of you
      Let's Make a Simple Stereo Compressor with FAUST & HISE.

      This video is for HISE members (video is unlisted). But you don't need any Patreon subscriptions . I believe education should be FREE & open to all.


      What you will learn from this video :
      https://www.youtube.com/watch?v=Z7sgsYsCQ8s

      • Create a Stereo Compressor via Web IDE (https://faustide.grame.fr/).

      • Test in real time

      • Write the code in HISE and compile DSP node

      • Connect it with HISE GUI

      If you didn't enable FAUST for HISE yet , please go through the instructions by @Christoph-Hart and enable it.
      https://forum.hise.audio/topic/6746/updated-build-instructions

      If you are new to HISE please watch the Tutorial videos of @d-healey
      YOUTUBE VIDEOS

      or Support him on Patreon
      https://www.patreon.com/davidhealey

      posted in Blog Entries
      Tania GhoshT
      Tania Ghosh
    • RE: How Can I convert ScriptNode/Faust Milisecond to temp Sync (Delay)

      @DabDab Enable the Enabled button... and see the magic of TempoSync

      posted in General Questions
      Tania GhoshT
      Tania Ghosh
    • RE: Custom Arpeggio Preset Browser to Save Arpeggio Presets Separately

      Adjust the StrideCtrl2 = 1

      posted in Presets / Scripts / Ideas
      Tania GhoshT
      Tania Ghosh
    • RE: [Feature Request] GUI Scaling with window handle?

      @DabDab These are the functions

      {
                      "ParentCursor",               /**< Indicates that the component's parent's cursor should be used. */
      		"NoCursor",                       /**< An invisible cursor. */
      		"NormalCursor",                   /**< The standard arrow cursor. */
      		"WaitCursor",                     /**< The normal hourglass or spinning-beachball 'busy' cursor. */
      		"IBeamCursor",                    /**< A vertical I-beam for positioning within text. */
      		"CrosshairCursor",                /**< A pair of crosshairs. */
      		"CopyingCursor",                  /**< The normal arrow cursor, but with a "+" on it to indicate that you're dragging a copy of something. */
      		"PointingHandCursor",             /**< A hand with a pointing finger, for clicking on web-links. */
      		"DraggingHandCursor",             /**< An open flat hand for dragging heavy objects around. */
      		"LeftRightResizeCursor",          /**< An arrow pointing left and right. */
      		"UpDownResizeCursor",             /**< an arrow pointing up and down. */
      		"UpDownLeftRightResizeCursor",    /**< An arrow pointing up, down, left and right. */
      		"TopEdgeResizeCursor",            /**< A platform-specific cursor for resizing the top-edge of a window. */
      		"BottomEdgeResizeCursor",         /**< A platform-specific cursor for resizing the bottom-edge of a window. */
      		"LeftEdgeResizeCursor",           /**< A platform-specific cursor for resizing the left-edge of a window. */
      		"RightEdgeResizeCursor",          /**< A platform-specific cursor for resizing the right-edge of a window. */
      		"TopLeftCornerResizeCursor",      /**< A platform-specific cursor for resizing the top-left-corner of a window. */
      		"TopRightCornerResizeCursor",     /**< A platform-specific cursor for resizing the top-right-corner of a window. */
      		"BottomLeftCornerResizeCursor",   /**< A platform-specific cursor for resizing the bottom-left-corner of a window. */
      		"BottomRightCornerResizeCursor"  /**< A platform-specific cursor for resizing the bottom-right-corner of a window. */
      }
      
      posted in Feature Requests
      Tania GhoshT
      Tania Ghosh
    • RE: LAF Collection for everyone

      @DabDab Another example You can try:

      const locl_laf = Content.createLocalLookAndFeel();
      const var SliderPack1 = Content.getComponent("SliderPack1");
      SliderPack1.setLocalLookAndFeel(locl_laf);
      locl_laf.registerFunction("drawSliderPackFlashOverlay", function(g, obj)
      {
      	g.setColour(obj.itemColour);
      	g.fillRect(obj.area);
      	g.setColour(obj.itemColour2);
      	var a = obj.area;
      	g.fillRect([a[0], 230, a[2], 12]);
      });
      
      locl_laf.registerFunction("drawSliderPackBackground", function(g, obj)
      {
      	g.fillAll(obj.bgColour); 
      });
      
      
      posted in Presets / Scripts / Ideas
      Tania GhoshT
      Tania Ghosh
    • RE: LAF Collection for everyone

      @DabDab Please use

      (obj.area);
      
      
      posted in Presets / Scripts / Ideas
      Tania GhoshT
      Tania Ghosh
    • RE: How can I make Vocal Remover Plugin

      Guys don't make thinks complicated and bitter.
      The Simple answer is NO. You can't make Vocal Remover Plugins using HISE.

      posted in General Questions
      Tania GhoshT
      Tania Ghosh
    • RE: Lfo Free / Sync Speed Bug, Any Advice?

      I Made 2 Knobs, FREE and Sync, And A Button to choose Between.

      The thought is To Hide one, and Show Other one, But It doesn't fills in true to form, and Bugs After Hitting Compile, or I Need to Click on Knob to Trigger the LFO

      Thanks.

      Movers and packers in Bangalore

      Being an Indian I feel very bad and angry too. This guys making a bad impression of Bangalore India by doing such stupid Spamming.

      posted in Scripting
      Tania GhoshT
      Tania Ghosh
    • RE: Have a nice christmas and new year vacation!

      Merry Christmas to everybody...
      3cba2b9e0a8821ccf39028d42a4d962f.gif

      posted in General Questions
      Tania GhoshT
      Tania Ghosh
    • RE: Custom Monolith Extension possible

      @dabdab said in Custom Monolith Extension possible:

      I won't change it

      CDD.png

      Sometimes only a good teacher pushes hard to solve a puzzle by yourself.

      True (y)

      posted in General Questions
      Tania GhoshT
      Tania Ghosh
    • RE: Custom Monolith Extension possible

      @dabdab said in Custom Monolith Extension possible:

      No problem, I can now change it to my own Extension.

      Nice..

      posted in General Questions
      Tania GhoshT
      Tania Ghosh
    • RE: Custom Monolith Extension possible

      @dabdab Bravo..

      posted in General Questions
      Tania GhoshT
      Tania Ghosh
    • RE: Custom Monolith Extension possible

      And yeah my opinion is HISE should have a custom monolith extension.

      posted in General Questions
      Tania GhoshT
      Tania Ghosh
    • RE: Custom Monolith Extension possible

      @danh said in Custom Monolith Extension possible:

      @dabdab Yes I think @Tania-Ghosh asked this a while back, the answer was to change the source code I believe.... Have a search on the forum

      Yeah, I tried but did not get success. If you investigate HiseLosslessAudioFormat.cpp and WavetableTools.cpp you can see there is a String array of { ".hlac", ".ch1", ".ch2", ".ch3", ".ch4", ".ch5" } . But after modification every time HISE only generates .ch1 file and recognize only .ch1 file. I don't know what the genius @Christoph-Hart has done for ch1 file instead custom Extensions. I hope @Natan , @DanH , @ustk may help you regarding this.

      posted in General Questions
      Tania GhoshT
      Tania Ghosh
    • RE: Can you make an Android & IOS Forum App for HISE

      @DabDab You can make simple Hise forum App (Apk) with and without coding. Here is a simple HISE forum APK for Android. Check it.
      HISE FORUM APK
      Please ignore the security issue because it is not present in Google Playstore and not verified by Google Play protect. But don't worry.

      posted in Feature Requests
      Tania GhoshT
      Tania Ghosh
    • RE: How to make simple Downloader with HISE

      Thanks Man 🙂

      @DabDab :astonished_face: :beaming_face_with_smiling_eyes:

      I am not MAN .. I am Woman

      posted in General Questions
      Tania GhoshT
      Tania Ghosh