• Script FX Issue

    8
    0 Votes
    8 Posts
    388 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
    861 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
    155 Views
    No one has replied
  • iOS app with HISE

    35
    1 Votes
    35 Posts
    7k 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
    404 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
    437 Views
    ulrikU

    @DanH Thank you for testing! :)

  • LAF Color Blending?

    3
    0 Votes
    3 Posts
    221 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
    296 Views
    No one has replied
  • Samplers- loops -start points.....

    10
    0 Votes
    10 Posts
    640 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
    137 Views
    ulrikU

    @d-healey Ok, I believe you ๐Ÿ‘

  • Error Exporting Plugins in Develop HISE

    5
    0 Votes
    5 Posts
    458 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
    275 Views
    S

    @d-healey Ok, great. Thanks

  • Build fail - Semantics: "Reference to โ€˜Pointโ€™ is ambiguous"

    35
    0 Votes
    35 Posts
    3k 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
    5k Views
    C

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

  • Reverse AudioWaveForm display?

    5
    0 Votes
    5 Posts
    274 Views
    ustkU

    Why not to grab the sample in a buffer and reverse it? Maybe not too much overhead if they are short enough?

  • Can't to export

    5
    0 Votes
    5 Posts
    418 Views
    d.healeyD

    @nouslou Try reinstalling xcpretty

  • Complile HLAC tool for standalone wav to monolith conversion

    13
    0 Votes
    13 Posts
    974 Views
    d.healeyD

    @bthj Yes you can run HISE from the terminal - I have a video about it on YouTube. I can't remember where in the source code it is but should be easy to do a text search for it once you know the available commands.

27

Online

1.9k

Users

12.5k

Topics

108.8k

Posts