Choose Sampler 2025 " sample import VST "
-
Is there a way for the sampler’s sample library to be installed automatically instead of having to choose ‘Choose Sampler’ when the VST is opened for the first time ?
-
@tsempire Yes, you can write your own installer that dumps the samples on the user's system. I would only do this with a tiny number of samples though. Anything significant and the user should choose where to put them.
-
@d-healey said in Choose Sampler 2025 " sample import VST ":
propre installateur
Is there a tutorial for creating your own installer as I couldn't find one?
-
@tsempire I haven't made one but there are several threads about it. There is no single method, it depends on how you want the install experience to be for the user.
-
@d-healey I just want the samples to be automatically available when I open the VST, in the same location as the plugin.
For example:
Demo.vst3
SamplesRight now, when I open the VST for the first time in a DAW, I have to manually locate the samples. I’d like them to load automatically instead. Do you understand what I mean?
-
@tsempire How many mb of samples?
-
@tsempire this was the tutorial I used to get started. Once you get the hang of it you will find it is quite simple to create the installers.
Package your app or plugin for distribution - JUCE
Tutorial: Package your app or plugin for distribution Learn how to prepare your audio application or plugin for distribution on various marketplaces. Create installers for all plugin types on different OS platforms. LEVEL: Advanced PLATFORMS: Windows, macOS Plugin Format: VST, VST3, AU, AUv3, RTAS, AAX Introduction So you just finished implementing the perfect plugin, bug-free […]
JUCE (juce.com)
Personally once I figured it out I saved a template with all the code signing/notarization in order to expedite the process
-
@d-healey about 1 gb for all prestes
-
@tsempire said in Choose Sampler 2025 " sample import VST ":
@d-healey about 1 gb for all prestes
Let the user choose the location. You don't want to dump 1gb of data on their C drive.
-
@HISEnberg I know "Inno Setup" so I create installers, I'm looking for when when opening the vst the first time it asks to search for the samples, I would like to skip this step I would like the vst to open directly with the samples.
-
@d-healey Yes, that's true, every VST I've installed in my life, I've left it by default in the C lol
I'm just wondering if it's possible to remove the "search for samples" message and have the VST automatically open with the samples.
-
@tsempire said in Choose Sampler 2025 " sample import VST ":
I'm just wondering if it's possible to remove the "search for samples" message and have the VST automatically open with the samples.
Yes you can disable the box with the preprocessor
HISE_DEACTIVATE_OVERLAY=1
During installation you need to ask the user where they want to install the samples and place them in that location. Then you need to generate a link file in the appdata folder that points to that location.
You also have to handle the situation when the user moves the samples to another location.
-
@d-healey oualla it's complicated.
-
@tsempire Yeah, I'm working on an installers masterclass. I'll try and include this configuration in it too. Won't be ready for a while though.
-
@d-healey I would wait perfectly thank you.
-
@tsempire Cool, if you have any more ideas about what you'd like your installer to do or how you want it to work from the user's point of view, send me a dm and I'll see if I can include it.
-
@d-healey No problem, I'll think about something and let you know.