My new plugin/app, Rhapsody, is finally released into the wild!
Best posts made by David Healey
-
I released my project!posted in General Questions
-
Export toolposted in General Questions
I'm currently building an app which I hope will allow batch exporting of HISE projects, auto notarization on Mac, and auto-generating installers. So far I have the basics working on GNUx. I need to finish the interface and add the batch handling, but that shouldn't be too difficult, then I'll tackle the other platforms.
This app should make it much easier for everyone (and especially beginners) to export their projects from HISE and build installers.
This is what it looks like so far (it's an ugly work in progress).

-
HISE Bootcamp - Full Course for Beginnersposted in General Questions
https://youtu.be/7i1vdOz3PSI?si=ZdTWoSeg_gNx4EFY
The AudioDevSchool site that I've been putting together for the last few months is finally ready!
For the initial launch I'm starting with a single course that I'm calling The HISE Bootcamp.
The course is 100% free and is designed for beginners, although there's probably stuff in there that more experienced users will also find useful.
The videos walk you through the process of building two simple plugins with HISE (a sample library and a scriptnode effect). We then move on to building HISE from source and compiling our projects.
Along the way we'll cover a bunch of subjects from basic things like finding your way around the HISE UI to more advanced concepts like Ad-Hoc codesigning for testing your plugins on MacOS.
Here's the link to the course: HISE Bootcamp.
Feel free to share it with anyone you think would find it useful.
Please let me know if you run into any issues with the website or any of the course material - there's usually something that goes wrong on launch day!
-
Time to update Visual Studio?posted in General Questions
It's becoming hard to find VS2017, I can no longer see the community edition at Microsoft's website, only a pro version trial.
@Christoph-Hart Is it possible to bring HISE into the new decade and add a VS 2022 export option?
I know we can already use VS 2022 with a bit of fiddling around, but it's not straightforward and requires additional steps for every export.
-
Plugin Showcase and scripting stuffposted in Blog Entries
With HISE reaching its 10th birthday recently I thought it was a good time to look at some of the commercial plugins that have been built with it.
I've put together a little blog post and video featuring some of the plugins that have stood out to me. See if you recognise any of them.
-
Show and Tell: Grid based layout systemposted in Scripting
Just wanted to share something I'm working on. It was briefly discussed last month here.
It's a grid based layout system, inspired by html and other layout languages. The idea is you define your components once in a JSON type format, pass it to the layout engine, and it will do the rest. It can layout components in a vertical or horizontal stack, or use a flexible grid.
If no dimensions are passed components will stretch to fill the available space. Dimensions can be passed either as numbers or percentages relative to the parent/column/row.
By default components are centred horizontally and vertically within each grid cell but you can specify their alignment (top/bottom/left/right). For stacks components butt against each other, I have plans to add some alignment options here as well though as well as margins/gutters.
If you want to add multiple controls you can define one control and specify a number of clones, and they will be created and positioned automatically.
I think it will make it easier for me to transfer layouts between projects as well as quickly build complex projects. I have a lot more functionality planned.

-
Universal HISE Downloader/Installerposted in General Questions
A couple of years ago I proposed making a general purpose downloader/installer app. In the time since I've created a downloader/installer for my own libraries and it works really well. I thought I'd see about adapting it to be an option for more developers.
I'm currently prototyping some things but before I get too deep with it I want to know if any of you would actually use it.
Unlike other similar apps (Pulse, Conduct, etc) what I'm creating is decentralized. Your customers will log into the app using the account they have on your website and downloads will be served from your servers. The app will of course be free software.
The app is more limited in scope than those other options. I don't intend to include an integrated shop and I don't plan support for non-HISE formats - but who knows what the future will bring.
The benefits for you is it's very cheap (you don't need to pay a middle-man), you don't have to develop your own downloader, new customers will discover your products when exploring other plugins available through the app, it's HISE focused and will support expansions and additional presets, etc..
The app supports serial keys to limit access to downloads. It does not (and cannot) provide any DRM but you can include this in your plugins if you wish.
It can integrate with any website, you just need to setup some endpoints and make sure they return the correct data. If you're using a Wordpress/WooCommerce site I can (for a fee) supply you with a Wordpress plugin that will integrate seamlessly with the app - this is the plugin I'm using on my own site.
So is this something any of you would use? If so I'll continue developing, if not then I won't bother, I don't want to be the only one using it :)
Here's a preview of where I'm at with it.

Latest posts made by David Healey
-
RE: Plugin Showcase and scripting stuffposted in Blog Entries
Another blog post and video for you. In this one we'll look at scripts and snippets that are available from the HISE community. I'll show you how to find them on the forum and the correct way to bring them into your own projects.
Leave a comment on the blog post, thanks!
https://audiodevschool.com/hise-community-scripts-and-snippets/
-
RE: Multiple Styles for Controls?posted in Scripting
@bwoogie use local look and feel instead of global.
-
RE: What’s the correct way to send an audio file from a HISE plugin to a backend server?posted in Scripting
@daniel_101 The release version is very much out of date. Follow the compilation instruction in my free bootcamp course.
-
RE: What’s the correct way to send an audio file from a HISE plugin to a backend server?posted in Scripting
@daniel_101 said in What’s the correct way to send an audio file from a HISE plugin to a backend server?:
HISE version I installed today
Built from the develop branch?
-
RE: What’s the correct way to send an audio file from a HISE plugin to a backend server?posted in Scripting
@daniel_101 Yes I think curl should work across platforms, but older versions of Windows might be missing it. I can't remember the details there.
@daniel_101 said in What’s the correct way to send an audio file from a HISE plugin to a backend server?:
"File.loadAsBase64()" function to do that but the function on HISE did not return a valid base64 string,
The function is
File.loadAsBase64String();It's still in the API. -
RE: Drawing circular keyboard keys with fillEllipseposted in General Questions
@dannytaurus I don't think the colours from floating tiles get through to laf. But for keyboard tiles you have access to individual key colours in
obj. -
RE: What’s the correct way to send an audio file from a HISE plugin to a backend server?posted in Scripting
@daniel_101 Aha ok, when you said backend I didn't realise you meant a remote system. What about using cURL to upload the file to your server?
-
RE: What’s the correct way to send an audio file from a HISE plugin to a backend server?posted in Scripting
@daniel_101 Can you pass the File directly to the backend - As in just give it the path to the file on the system?
-
RE: Drawing circular keyboard keys with fillEllipseposted in General Questions
@lijas90 In laf you need to set the colour with
g.setColourbefore drawing whatever you're drawing.For example in the snippet you have
g.setColour(Colours.grey);If you want to use the colour that you've assigned withEngine.setKeyColour()you need to get that colour from theobjobject in the laf function - did I show this in the video?

