Mac installer for audio sample libraries best practices?
-
@WillowWolf said in Mac installer for audio sample libraries best practices?:
What was your approach to making an in plugin setup for samples?
HISE has a built in sample installer.
@WillowWolf said in Mac installer for audio sample libraries best practices?:
The seemingly fundamental inability to install files to both /library and ~/library makes me think there's no single-installer solution.
This is entirely possible (as I mentioned earlier in this thread). I have a video about it on my Patreon page, the instructions are also included in the Whitebox Packages documentation.
The problem with Packages is that as far as I can tell there is no method to prompt the user for an install location. You have to install the files to a predefined location. But I've emailed the Packaged dev about this and he's looking into it for me.
-
For anyone reading this thread in the future, I've been having success using araelium package builder. So far I've had no issue installing to the users ~/library folder. There's a fully featured free trial (with a watermark), and the scripting language is javascript, so pretty familiar to anyone who uses hisescript during plugin development!
https://www.araelium.com/packagebuilder
Thanks to everyone who has replied to the thread and given helpful info!
-
@WillowWolf With Araelium Package Builder, are you able to install to both /Library and ~/Library in a single installer?
Plugin installed in
/Library/Audio/Plug-Ins
Samples installed in~/Library/Application Support(aka/Users/[USER]/Library/Application Support)Or are you installing the plugin and the samples to
~/Library? -
@WillowWolf said in Mac installer for audio sample libraries best practices?:
I've been having success using araelium package builder.
Does it have a way to prompt the user to select a folder?
-
@David-Healey I'm still not 100% sure why the need to install to both system and user spaces on Mac. Can you explain?
As far as I understand, it's to install the plugin to the system /Library folder (for all users) and the samples to the user ~/Library folder (for the current user only).
What's the point of installing the plugin to the system folder for all users if the samples are sandboxed to a specific user? Other users on the machine won't be able to use the plugin without the samples.
The only reason I can think of is that DAWs have the system plugin folders set as default (/Library/Audio/Plug-Ins) but not the user plugin folders (~/Library/Audio/Plug-Ins).
Meaning some DAWs might miss plugins installed to the user Plug-Ins folder unless the user updates the search paths.
I don't know for sure what plugin paths DAWs use by default. Would be a good one to look up.
-
@dannytaurus said in Mac installer for audio sample libraries best practices?:
I'm still not 100% sure why the need to install to both system and user spaces on Mac. Can you explain?
The standard location for plugins is the system wide folder - although you can install in the user folder if you prefer.
Data files (like AudioResources.dat) needs to go in the user's Application Support folder. But if you don't have any data files then you don't need to install anything in the user locations...
Unless your installer also includes samples in which case you'll want to create the LinkOSX file in the user location - but you should only be doing this if you've prompted the user to choose a location to install the samples since there is no standard samples location, but as far as I can tell there is no method for prompting the user on macOS.
-
@David-Healey said in Mac installer for audio sample libraries best practices?:
Data files (like AudioResources.dat) needs to go in the user's Application Support folder.
Why not the system Application Support folder? /Library/Application Support
-
@dannytaurus said in Mac installer for audio sample libraries best practices?:
Why not the system Application Support folder? /Library/Application Support
You can if you enable the Global App Data Folder option in HISE preferences - although I find it causes weird issues for me. But I think the idea is in a multi-user setup different users will have different presets and preferences so those settings are per-user.
-
@David-Healey Right, makes sense.
I'll dig around some other plugins and see where they put their data can assets, to get a feel for it.
-
@WillowWolf said in Mac installer for audio sample libraries best practices?:
What was your approach to making an in plugin setup for samples?
Any advice or suggestions would be helpful, since I'm exploring a similar route.
Ok so...
I have a json file that is saved by the plugin to the AppData folder, this is the Setup manifest - here's an example, as it is defined in the code:
reg defaultInstallManifest = { "DownloadTargetFolder" : "Not Set", "DownloadApproach" : "", "downloadSpace": 3670, "samplerSpace" : 3990, "version" : 30000, "type": "setup", "setupSteps" : [ { "downloadFileName" : "www.xxxxx.com/download/zzzzz/ProductNameData01.cra", // Sample files ch1 "downloadFileDestination" : "ProductNameData01.cra", "downloadFileContents" : "Sample Files", "installDestination" : destinations.USERSAMPLE_LOCATION, "status" : destinations.UNSTARTED }, { "downloadFileName" : "www.xxxxx.com/download/zzzzz/ProductNameData02.cra", // Sample files ch1 "downloadFileDestination" : "ProductNameData02.cra", "downloadFileContents" : "Sample Files", "installDestination" : destinations.USERSAMPLE_LOCATION, "status" : destinations.UNSTARTED }, { "downloadFileName" : "www.xxxxx.com/download/zzzzz/ProductNameData03.cra", // Sample files ch1 "downloadFileDestination" : "ProductNameData03.cra", "downloadFileContents" : "Sample Files", "installDestination" : destinations.USERSAMPLE_LOCATION, "status" : destinations.UNSTARTED }, { "downloadFileName" : "www.xxxxx.com/download/zzzzz/ProductNameData04.cra", // Sample files ch1 "downloadFileDestination" : "ProductNameData04.cra", "downloadFileContents" : "Sample Files", "installDestination" : destinations.USERSAMPLE_LOCATION, "status" : destinations.UNSTARTED }, { "downloadFileName" : "www.xxxxx.com/download/zzzzz/ProductNameData05.cra", // Sample files ch1 "downloadFileDestination" : "ProductNameData05.cra", "downloadFileContents" : "Sample Files", "installDestination" : destinations.USERSAMPLE_LOCATION, "status" : destinations.UNSTARTED }, { "downloadFileName" : "www.xxxxx.com/download/zzzzz/ProductNameData06.cra", // Sample files ch1 "downloadFileDestination" : "ProductNameData06.cra", "downloadFileContents" : "Sample Files", "installDestination" : destinations.USERSAMPLE_LOCATION, "status" : destinations.UNSTARTED }, { "downloadFileName" : "www.xxxxx.com/download/zzzzz/ProductNameData07.cra", // Sample files ch1 "downloadFileDestination" : "ProductNameData07.cra", "downloadFileContents" : "Sample Files", "installDestination" : destinations.USERSAMPLE_LOCATION, "status" : destinations.UNSTARTED }, { "downloadFileName" : "www.xxxxx.com/download/zzzzz/ProductNameData08.cra", // Sample files ch1 "downloadFileDestination" : "ProductNameData08.cra", "downloadFileContents" : "Sample Files", "installDestination" : destinations.USERSAMPLE_LOCATION, "status" : destinations.UNSTARTED }, { "downloadFileName" : "www.xxxxx.com/download/zzzzz/ProductNameData09.cra", // Sample files ch1 "downloadFileDestination" : "ProductNameData09.cra", "downloadFileContents" : "Loop Files", "installDestination" : destinations.USERSAMPLE_LOCATION, "status" : destinations.UNSTARTED }, { "downloadFileName" : "www.xxxxx.com/download/zzzzz/ProductNameData10.cra", //the meta files "downloadFileDestination" : "ProductNameData10.cra", "downloadFileContents" : "Meta Data Files", "installDestination" : destinations.APPDATA_LOCATION, "status" : destinations.UNSTARTED }, { "downloadFileName" : "www.xxxxx.com/download/zzzzz/ProductNameData11.cra", // audio wav files "downloadFileDestination" : "ProductNameData11.cra", "downloadFileContents" : "Audio Files", "installDestination" : destinations.AUDIOFILES_LOCATION, "status" : destinations.UNSTARTED }, { "downloadFileName" : "www.xxxxx.com/download/zzzzz/ProductNameData12.cra", // presets "downloadFileDestination" : "ProductNameData12.cra", "downloadFileContents" : "Preset Files", "installDestination" : destinations.PRESETS_LOCATION, "status" : destinations.UNSTARTED } ] };So on start up the plugin looks for a manifest file in the AppData folder, and when it doesnt find it - then it knows that there is a set up to do....so it uses this internally included version (above) of this file to do the set up...
It should be pretty obvious, what is happening. There are a bunch of file URLs that point to stuff that needs to be downloaded, so first the plugin installer asks where the user wants to put these temp download files...and it checks there's enough room in the user specified location...
If there is enough room it iterates over the steps downloading these files ( I usually limit the file sizes to about 500MB), as each is done it updates the step status to "downloaded"...
When everything has been downloaded it checks to see if there is any sample data in the manifest, if there is it asks the user where they want to keep their sample data on a permanent basis...it checks there is enough space in the users requested location.
If there is it creates a "Link File" and begins the unarchiving process for each step putting the contents of each downloaded file in its final location and updating the manifest on disk as it does so with the status "installed"....
When its done it offers the user the opportunity to delete those temp download files and tells the user to restart the plugin...
The plugin restarts, finds the Manifest file, checks its all been completed("installed") successfully and if it has it starts to run like a normal plugin....
The system includes an off-line setup process too - but the number of users who have opted for this as tiny tiny tiny...
It took very little effort to enhance this to allow the plugin to download and install expansions too...essentially this will download and set up for you: samples, their link file, meta data, wav files, graphics, basically anything you can zip up and know the location you want to use...
With this approach the only thing the "classic" installer (like whitebox etc.) has to do is put the VST3 and AU files wherever you want them...
This whole sub system is actually available to license from me if you wish...