Forum
    • Categories
    • Register
    • Login
    1. Home
    2. jeffd
    3. Topics
    J
    • Profile
    • Following 2
    • Followers 0
    • Topics 34
    • Posts 270
    • Groups 0

    Topics

    • J

      Sample installer only extracts the first part on Intel Macs

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      11
      0 Votes
      11 Posts
      949 Views
      J

      @jeffd

      So i got a notarized .pkg working of the .hr files. still need to test more but i got them into the plugin's own per-user app-data folder. Then when the plug-in opens and installs the samples it can also auto-delete the .hr files right after extracting. And no gatekeeper quarantine from macos. Ill have to do the same on pc and create .exe for the .hr files to match. but perhaps this will be best. less confusing for people i imagine?

    • J

      for customers purchasing a sample based plugin, is it best to leave .hr1, .hr2 files etc unzipped?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      248 Views
      J

      @David-Healey thats what I was thinking

      thanks David

    • J

      convert samplemap to hlac monolith crashing

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      18
      0 Votes
      18 Posts
      1k Views
      OrvillainO

      Yes, this functionality is broken when you try to run Tools>Convert all samplemaps to monolith + samplemap

    • J

      HISE’s CPU readout is at 0% in the compiled plugin in logic.

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      275 Views
      J

      @ustk yeah ill just hide it.

      I was gonna have it as part of the interface for the user to see cpu and ram usage, but its not really necessary.

    • J

      Channel Amount Mismatch when converting to monolith

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      18
      0 Votes
      18 Posts
      909 Views
      J

      @elemen8t
      i can only get it to work using the method david mentioned:

      Select all the samples, right click in the mapping window, Tools > Merge into multi mic samples

      the samples do have to be ...exactly the same length for each mic position.

      also, doesnt work in juce 8 last time i checked. if you are using juce 8.

    • J

      peak meters not rendering in compiled plugin

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      2k Views
      J

      @jeffd
      ok that was my problem.
      i needed to set the array for the channelIndexes

    • J

      method to reset file name token parser?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      636 Views
      J

      @d-healey said in method to reset file name token parser?:

      they are multi mic

      yeah they are multi mic.
      i think everything is workin now though.

    • J

      possible to create a fade at the end of an imported sample in the sample editor?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      1k Views
      J

      @d-healey
      all working now..
      i think i still had audio at the end of the samples from before because i was using a limiter when i exported the audio file with the fade...im assuming it still pulled up the audio in the sample after the fade.
      i just couldnt hear it.

    • J

      loop points not being saved with my sample map

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      875 Views
      ChazroxC

      @jeffd

      @jeffd said in loop points not being saved with my sample map:

      sorry i should have spammed this thread with my nonsense
      haha.

      we all do it. 😆

    • J

      Is it possible to compress file size when packing the sample monolith files to HLAC?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      1k Views
      Christoph HartC

      @jeffd hr1 uses Flac which is a tiny bit better when using 16 bit but a bit worse if you use 24bit

    • J

      hard coded master effect not working all of the sudden

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode
      2
      0 Votes
      2 Posts
      593 Views
      J

      @jeffd
      ok i figured it out, for some reason my send effect wasnt connected to my send container.
      no idea how that happened.

      but works again

    • J

      Possible to get a button that is already connected to a ProcessorID to also show/hide another knob?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      19
      0 Votes
      19 Posts
      3k Views
      J

      @d-healey i couldnt get it to.

      This is how ive gotten it to work
      probably a much better way to code this but maybe this can help someone:

      // delay temposync const var HardcodedMasterFX3 = Synth.getEffect("HardcodedMasterFX3"); const var KnobDelayTime = Content.getComponent("KnobDelayTime"); const var btnDelaysynch = Content.getComponent("btnDelaysynch"); const var KnobDelayTime1 = Content.getComponent("KnobDelayTime1"); inline function onKnobDelayTime1Control(component, value) { HardcodedMasterFX3.setAttribute(0, value); }; Content.getComponent("KnobDelayTime1").setControlCallback(onKnobDelayTime1Control); inline function onKnobDelayTimeControl(component, value) { HardcodedMasterFX3.setAttribute(1, value); }; Content.getComponent("KnobDelayTime").setControlCallback(onKnobDelayTimeControl); inline function onbtnDelaysynchControl(component, value) { HardcodedMasterFX3.setAttribute(2, value); if (value) { KnobDelayTime1.showControl(false); KnobDelayTime.showControl(true); } else { KnobDelayTime1.showControl(true); KnobDelayTime.showControl(false); } }; Content.getComponent("btnDelaysynch").setControlCallback(onbtnDelaysynchControl);
    • J

      sample import demo project

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      570 Views
      rglidesR

      @jeffd haha I just saw this after replying. Ok good yep that's it

    • J

      the size limit for image files is still 50mb?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      12
      0 Votes
      12 Posts
      1k Views
      David HealeyD

      @orange Copy the .dat files that you need directly to app data. https://docs.hise.audio/working-with-hise/settings/project.html#embed-image-files

      Also if you want to be certain the pooled files are up to date you can use Export >> Export Pooled Files to Binary Resource.

    • J

      plugin build not asking for sample library location anymore?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      45
      0 Votes
      45 Posts
      9k Views
      J

      @d-healey
      i always have another backup project on my pc,
      so i started over with that.
      so unfortunately, no idea of what was actually causing it.

    • J

      possible to change font and text color of the performanceLabel with LAF?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      411 Views
      J

      @d-healey
      ah thanks David.
      although i just realized i can totally do it from the property editor

    • J

      this instrument here is using the audio loop player?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      544 Views
      J

      @d-healey oh i had no idea

    • J

      thoughts on using max/msp RNBO vs Faust

      Watching Ignoring Scheduled Pinned Locked Moved General Questions faust
      12
      0 Votes
      12 Posts
      3k Views
      DabDabD

      I guess Kadenze also has a a Free Max Msp Course
      https://www.kadenze.com/courses/max-msp-programming-course-structuring-interactive-software-for-digital-arts/info?utm_campaign=course_card_share&utm_content=course_id%3D53&utm_medium=share&utm_source=kadenze

    • J

      has anyone tried using the pulse downloader for storage and delivering their sample based instruments /products?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      13
      0 Votes
      13 Posts
      3k Views
      David HealeyD

      @ustk Yeah it's really nice, Brian at Mntra put me onto it

    • J

      What is the process for getting the HISE Activate copy protection to work?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      244 Views
      No one has replied