• Tempo Synced Attack Time? How?

    9
    0 Votes
    9 Posts
    368 Views
    NatanN

    @Matt_SF No Idea ho it works :/

  • Dynamically load instruments over the Internet?

    Solved
    18
    0 Votes
    18 Posts
    1k Views
    bthjB

    Made a couple of changes which solve this issue on iOS, discussed here:

    Link Preview Image Dynamically download samples on iOS · Issue #265 · christophhart/HISE

    Downloading samples into the FileSystem.Samples directory doesn't work on an iOS device (though it works on a simulator), where the Samples folder seems to be part of the read-only app bundle. A couple of changes solve this particular is...

    favicon

    GitHub (github.com)

  • Sampler and Unison

    3
    0 Votes
    3 Posts
    162 Views
    DanHD

    @ulrik Thanks, I'll give it a go. It seems the unisono control is hard wired to change the voice count though so I'm unsure of being able to script it succesfully

  • Script FX Issue

    8
    0 Votes
    8 Posts
    335 Views
    Matt_SFM

    @DanH said in Script FX Issue:

    @Matt_SF Thanks, I tried to set max values like you suggested before, which were either 0.3 or 0.12, and it wasn't having it 😆

    I tried with only one set as well, but no joy.

    I have tried with setting the values to full as well, but HISE doesn't crash. Only in the plugin does it do that. I can live without them for now, the change in sound is super subtle...

    Try pushing the audio input level into your fx to see if something happens...

  • Exporting as VSTi/AUi on M1

    11
    1 Votes
    11 Posts
    732 Views
    d.healeyD

    @DanH said in Exporting as VSTi/AUi on M1:

    @d-healey ah xcode 12 is the missing link. Do you know if I can use it on mojave?

    I don't think, but I'm no Apple expert. Here are the docs - https://developer.apple.com/documentation/apple-silicon/building-a-universal-macos-binary

    Actually those docs aren't too useful for us, just check the app store and see if xcode 12.2 or higher is available.

  • Develop my sample and MIDI products

    1
    0 Votes
    1 Posts
    144 Views
    No one has replied
  • iOS app with HISE

    35
    1 Votes
    35 Posts
    3k Views
    bthjB

    Found an Internet Archive snapshot of the page at
    http://hise.audio/manual/ios.php
    which currently displays some error. There I found helpful information on the missing pieces:

    wasn't using the Xcode project generated at Binaries/Builds/iOS/ needed to add the Apple Team Development ID in the HISE User Settings and an App Group ID in the Project Settings

    Now the same basic project, which I've previously built as a desktop standalone and -plugin application, runs on an iOS simulator and an iPhone device, which is quite amazing.

  • cant use search properly...

    7
    0 Votes
    7 Posts
    343 Views
    LindonL

    Thank you everyone....@crd - yes I often do this...

  • This topic is deleted!

    9
    0 Votes
    9 Posts
    35 Views
  • Help needed

    8
    0 Votes
    8 Posts
    388 Views
    ulrikU

    @DanH Thank you for testing! :)

  • LAF Color Blending?

    3
    0 Votes
    3 Posts
    201 Views
    ?

    @Christoph-Hart Thank you!

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    17 Views
    No one has replied
  • Script Node Tape FX

    1
    0 Votes
    1 Posts
    273 Views
    No one has replied
  • Samplers- loops -start points.....

    10
    0 Votes
    10 Posts
    576 Views
    LindonL

    @d-healey -well I can see why it isnt, the x-fade "data" hasnt been read the first time thru... but if it is a bug and it can get fixed colour me a happy camper...

    nope thinking about it more - I think you are right this is a bug...

  • ScriptSlider behaviour

    3
    0 Votes
    3 Posts
    122 Views
    ulrikU

    @d-healey Ok, I believe you 👍

  • Error Exporting Plugins in Develop HISE

    5
    0 Votes
    5 Posts
    355 Views
    d.healeyD

    @mwplugs Check in the project's .jucer file what the architectures are set to. If it's both x86 and Arm, and it compiles successfully, then it will work.

    You should also run your plugins through pluginval and auval

  • ShowControl Strange Behaviour

    9
    0 Votes
    9 Posts
    258 Views
    S

    @d-healey Ok, great. Thanks

  • Build fail - Semantics: "Reference to ‘Point’ is ambiguous"

    35
    0 Votes
    35 Posts
    2k Views
    ulrikU

    @Christoph-Hart this is your code and it works great in the standalone Hise, this is only 6 channels but it should work for more I guess :)

    // Bass side ---------------------------- inline function onOutBassControl(component, value) { // this variable checks if the output channel exists. local success = true; switch(value) { case 1: // Routes the first two input channels (= sine wave); // to the first to output channels matrix.addConnection(0, 0); matrix.addConnection(1, 1); break; case 2: // Routes the first two input channels // to the second stereo output matrix.addConnection(0, 2); // addConnection returns true if the connection could be added // if the host doesn't support multichannels, this returns false // and you can reset the connections to default later (see below) success = matrix.addConnection(1, 3); break; case 3: matrix.addConnection(0, 4); success = matrix.addConnection(1, 5); break; } if(!success) { // Reset to Channel 1+2 in case of an error matrix.addConnection(0, 0); matrix.addConnection(1, 1); } //SucessLabel.set("text", success ? "OK" : "Error"); }; Content.getComponent("OutBass").setControlCallback(onOutBassControl); // Treble side -------------------------------- inline function onOutTrebleControl(component, value) { // this variable checks if the output channel exists. local success = true; switch(value) { case 1: matrix.addConnection(2, 0); matrix.addConnection(3, 1); break; case 2: matrix.addConnection(2, 2); success = matrix.addConnection(3, 3); break; case 3: matrix.addConnection(2, 4); success = matrix.addConnection(3, 5); break; } if(!success) { matrix.addConnection(2, 0); matrix.addConnection(3, 1); } //SucessLabel.set("text", success ? "OK" : "Error"); }; Content.getComponent("OutTreble").setControlCallback(onOutTrebleControl);
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Has the modulation system been "fixed" ?

    49
    0 Votes
    49 Posts
    3k Views
    C

    @Christoph-Hart Should I do something similar when modulating a simple gain with a similar system?

32

Online

1.7k

Users

11.7k

Topics

101.5k

Posts