Skip to content

Instantly share code, notes, and snippets.

@MaddyGuthridge
Last active September 7, 2022 11:04
Show Gist options
  • Save MaddyGuthridge/c03a6eb4de95669237858382ce4efc7b to your computer and use it in GitHub Desktop.
Save MaddyGuthridge/c03a6eb4de95669237858382ce4efc7b to your computer and use it in GitHub Desktop.
Print parameter list for a plugin in FL Studio
"""
fl_plugin_params.py
A simple script to print out every parameter name for a plugin.
To run this script:
1. Load the plugin into the first slot of the channel rack
2. From the view menu, open the script output
3. Copy and paste each line into the input field one by one, hitting enter between the lines
If you're unsure which parameters are the ones you desire, you can check by finding your
plugin within the "current project" section of the FL Studio browser.
You may notice that some indexes are missing from the output. Parameters are skipped if their
name is empty, as otherwise, every VST plugin would have 4240 parameters.
"""
import plugins
for i in range(plugins.getParamCount(0)): print(f"{i}: {plugins.getParamName(i, 0)}") if plugins.getParamName(i, 0) != "" else ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment