Very nice @aaronventure ! Thanks for sharing.
Best posts made by dxmachina
-
RE: Merry Christmas: Polyphonic FLEX Envelope
-
RE: Issue with LFO fade in time
Sorry to be an annoying thread-bumper, but I really could use some assistance with this. Is this a bug - or is there any other workaround?
@Christoph-Hart Help!!
-
RE: Flexible Envelope Facsimile?
@d-healey in KT you can designate a portion of a flex envelope to loop repeatedly (the sustain portion essentially). The portion between the two vertical yellow lines can be looped in absolute time or synched to clock.
-
RE: Build successful but app only for Apple Silicon
@bendurso Had the same issue. Open the Projucer file and try enabling x86 for the Xcode project :
-
RE: WebView Doesn't Work in Compiled Plugins and Stand-alone Apps
@clevername27 Thank you.
Just for clarity, in case anyone else is making rookie mistakes like myself. The main issue for me (just using embedded webview) was:
WebView1.set("enableCache", false);
This had to be set to true in builds or you otherwise end up with just a blank webview in your app/plugins. To be fair, this is in the docs.
-
RE: WebView Doesn't Work in Compiled Plugins and Stand-alone Apps
@Christoph-Hart I was simply trying to load similar to your example code:
const var f = FileSystem.getFolder(FileSystem.AudioFiles).getParentDirectory().getChildFile("Images/index.html"); WebView1.set("enableCache", false); WebView1.reset(); WebView1.setIndexFile("Images/index.html");
Working in editor, but blank white screen on all build types (on mac anyway).
Or is that still wrong on my end?
-
RE: WebView Doesn't Work in Compiled Plugins and Stand-alone Apps
Finding the same thing here using latest development branch. Tried standalone and plugin builds on macOS.
Is this feature still supported?
-
RE: iOS/iPadOS/VisionOS Support
@TNTHM I've done some testing with AU synths and other stuff on the iOS store and it does work well. I'm not yet sure how well the roundtripping with desktop works when it comes to third parties though. That's on my list to explore for both Cubasis and Logic as it would probably dictate approach a bit.
-
RE: iOS/iPadOS/VisionOS Support
@d-healey Called "Cubasis" it's actually pretty decent and supports AU. Logic for iPad is also very usable (and I know there are other players in mobile DAW space I don't have much experience with).
-
iOS/iPadOS/VisionOS Support
Hi Christoph,
I think getting iOS/iPadOS/(VisionOS) compiling again is worth your time.
I have read through the last couple years of posts regarding iOS support, the large annoyances/challenges, etc. I'm also keenly aware of the limited development time when you're a solo or small operation. However, I do think there are emerging platform opportunities with some decent (mobile) DAWs (Logic, Cubasis, etc) and notation software (Dorico) all capable of audio unit support.
Just one dude's opinion.
Latest posts made by dxmachina
-
RE: WebView Doesn't Work in Compiled Plugins and Stand-alone Apps
I have no issue compiling my plugin with webview on Mac/PC.
I'm wondering is this related to the specific example you're trying to compile? I have not attempted to compile the example preset browser.
Maybe just try a simpler test with some html/css and a binding?
-
RE: WebView Doesn't Work in Compiled Plugins and Stand-alone Apps
@clevername27 Thank you.
Just for clarity, in case anyone else is making rookie mistakes like myself. The main issue for me (just using embedded webview) was:
WebView1.set("enableCache", false);
This had to be set to true in builds or you otherwise end up with just a blank webview in your app/plugins. To be fair, this is in the docs.
-
RE: WebView Doesn't Work in Compiled Plugins and Stand-alone Apps
@Christoph-Hart I was simply trying to load similar to your example code:
const var f = FileSystem.getFolder(FileSystem.AudioFiles).getParentDirectory().getChildFile("Images/index.html"); WebView1.set("enableCache", false); WebView1.reset(); WebView1.setIndexFile("Images/index.html");
Working in editor, but blank white screen on all build types (on mac anyway).
Or is that still wrong on my end?
-
RE: WebView Doesn't Work in Compiled Plugins and Stand-alone Apps
Finding the same thing here using latest development branch. Tried standalone and plugin builds on macOS.
Is this feature still supported?
-
RE: OSC for Crosstalk - one manager for sending, another for receiving?
@aaronventure Glad you found a solution that works for your use case. The enduser would love this feature and would soon be complaining that KT doesn't have it. I think these are the kinds of VI problems that we've gotten accustomed to that really should have better behavior.
Unfortunately, I am trying to find a reliable solution for crosstalk in realtime between a client and host plugins and have been pulling my hair out (ok, there isn't that much left to begin with) over these same OSC behaviors. I've about given up on it, but FWIW @Christoph-Hart I would also request looking into the mentioned behaviors, because they're very unexpected.
-
Destructor for HISE projects accessible via scripting?
Quick question.. is there any way to access the destructor for a plugin/standalone from within HISEscript? Basically, a callback to run a small bit of code when a plugin is uninstantiated or otherwise turned off by the host?
-
RE: Any build possible with Sonoma?
@AndreD Running Sonoma here and here's what works:
- Building HISE itself is fine for me with Xcode 15
- Building my projects does not work for me with Xc15, but does work with Xc14. I keep both on hand.
So overall Sonoma seems workable to me as long as you have Xc14 around.
-
RE: Merry Christmas: Polyphonic FLEX Envelope
Very nice @aaronventure ! Thanks for sharing.
-
RE: Assigned parameter values disappear after clicking away in recent builds
@Christoph-Hart Is this possibly still affecting the convolution reverb settings? I'm seeing identical behavior where values are retained but visually not recalled.
Edit - to be more specific, the Wet Level, Dry Level, High Cut, and Damping seem to be the culprits.
-
RE: MIDI Processor Inconsistent/Processing Speed Issue?
@Christoph-Hart Aha... ok, that's more or less what I've been trying (though I'm learning from your optimization here -- nice). Are you suggesting we use this as is, or would you implement into the engine?