
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
u-he-preset-randomizer
Advanced tools
Create random u-he synth presets through randomization and merging of your existing presets.
Generate u-he synth presets through randomization and merging of your existing presets.
This tool can generate random presets in three different modes:
The randomization / merging approach is very generic as it analyzes your actual preset library and bases the random values on the resulting statistical distributions.
In addition, there are optional flags / modes that that affect the randomization:
stable
mode for more reliable, but slightly less random resultsbinary
mode, see --binary
CLI arguments documentation.It should work for all u-he synths on all platforms. Some synths may work better, due to their simpler architecture (e.g. u-he Diva). More modular synths like Bazille or Zebra also work, but you'll get more "varied" results.
This is a CLI application that you need to run in your terminal / command line.
First you need to install the Node.js runtime.
Then you can open your Terminal / Console / Command Prompt and start it by entering a command, optionally with some arguments.
They start with npx u-he-preset-randomizer@latest
, which will download and run the latest version of this tool:
npx u-he-preset-randomizer@latest
This will start the tool in interactive mode. It will guide you though the necessary choices. Alternatively, you can pass some arguments if you already know the choices (non interactive).
The generated patches will be put into your selected synth preset directory, under a /RANDOM
folder in your user presets.
If you want to download the tool for offline use and manual updates:
# install it as a global CLI tool
npm i -g u-he-preset-randomizer
# Now you can run it without npx:
u-he-preset-randomizer
This command will run the randomizer to generate 3 fully randomized Diva presets. Random values will be based on real values (and their distribution) of your actual presets.
npx u-he-preset-randomizer@latest --synth Diva --amount 3
This command will take one particular preset "HS Greek Horn" and create 5 random variations of it, with a 20% randomization ratio.
npx u-he-preset-randomizer@latest --synth Diva --amount 5 --preset "HS Greek Horn" --randomness 20
This command will merge multiple presets together, with a random ratio on how much weight each one has in the "inheritance".
The following example will take three Diva presets (each indicated with --merge
) and create 5 merged variants out of them.
npx u-he-preset-randomizer@latest --synth Diva --amount 5 --merge "HS Greek Horn" --merge "HS Strumpet" --merge "HS Baroqualog"
If you're unsure which values are correct to use, run the tool in interactive mode. Most config options here will be available with auto-complete or suggestions.
--synth
: Choose the u-he synth. Not all synths have been tested, but the randomizer tries to be generic. The name must match the folder name convention of u-he. E.g. Diva
, Hive
, ZebraHZ
.--amount
: How many presets to generate. Positive integer number.--randomness
: Amount of randomness (in percentage) to apply, when randomizing existing presets or resulting merged presets. Value needs to be between 0 and 100.--preset
: If given, an existing preset will be used as a based and randomized by --randomness
ratio.
?search string?
to choose a random preset containing "search string" in its path and file name.--merge
: Can be provided multiple times, for each preset that should be part of the merging. Ratio between merged presets is random and NOT driven by the --randomness
parameter.
?
to choose random preset?search string?
to choose a random preset containing "search string" in its path and file name.*
to select all presets (careful! Better first reduce via --pattern
.)*search string*
to select all presets containing "search string" in its path and file name.--pattern
: Define a glob pattern, which presets should be loaded.
**/*
which will load all presets from all sub-folders.My Folder/**/*
**/PD *
--folder
: narrow down presets by folder. Use /Local/
or /User/
as starting point.--category
: narrow down presets by preset category (metadata)--author
: narrow down presets by preset author (metadata)--favorites
: narrow down presets by selection fia .uhe-fav
file. The files must be located somewhere within your preset library.--stable
: Uses more stable randomization approach
--binary
: Keep the binary part of the u-he presets. They will not be changed, but randomly generated presets will now include the binary section of either a random preset or the base preset that is randomized.
--dictionary
: Creates random names from a dictionary of names used in the preset library--custom-folder
: In case the installation folder is custom, it can be given here
--custom-folder "C:/Audio/Plugin Installationen/u-he/"
--debug
: Enables some optional debug logging and file exportingCover | Links | Description |
---|---|---|
Diva Generated Vol. 1 (ZIP), Audio Demo | 50 randomly generated presets for u-he Diva, curated, modified and tagged by Simon Heimler in 2024. |
To run this tool locally in developer mode, check out the repo and:
npm i
npm run build
npm run start -- --synth Diva --amount 3
# or run with node.js (remember npm run build!)
node dist/cli.js
# or use tsx if you wan't to avoid running npm run build (install via npm i -g tsx):
tsx src/cli.ts --synth Diva --amount 3
I've also exposed the u-he preset parser / serializer functions in the NPM module, so they could be used programmatically by other projects. However, you might inherit more dependencies than necessary if you're just interested in the parser. See ./src/parser.ts.
Please use the related KVR Thread or create a GitHub issue.
FAQs
Create random u-he synth presets through randomization and merging of your existing presets.
The npm package u-he-preset-randomizer receives a total of 26 weekly downloads. As such, u-he-preset-randomizer popularity was classified as not popular.
We found that u-he-preset-randomizer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.