Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,12 @@ The commands supported by mod-host are:
* reset value must be according to reset property spec
e.g.: params_flush 0 1 2 "gain" 0.0 "distortion" 0.5

pre_run <instance_number> <reset_value> <param_count> <params...>
* pre-run and flush several param values at once and trigger reset if available
* reset value must be according to reset property spec
* instance must be in deactivated state or global processing disabled (and plugin does not have isLive flag)
e.g.: pre_run 0 1 2 "gain" 0.0 "distortion" 0.5

patch_set <instance_number> <property_uri> <value>
* set the value of a control port
e.g.: patch_set 0 "gain" 2.5
Expand Down Expand Up @@ -341,8 +347,18 @@ The commands supported by mod-host are:
multi_params_flush <reset_value> <instance_count> <instance_number...> <param_count> <params...>
* flush several param values at once and trigger reset if available (multiple instance variant)
* reset value must be according to reset property spec
* all instances must be in activated state
e.g.: multi_params_flush 1 2 0 1 2 "gain" 0.0 "distortion" 0.5

multi_pre_run <reset_value> <instance_count> <instance_number...> <param_count> <params...>
* pre-run and flush several param values at once and trigger reset if available (multiple instance variant)
* reset value must be according to reset property spec
* all instances must be in deactivated state or global processing disabled (and plugins do not have isLive flag)
e.g.: multi_pre_run 1 2 0 1 2 "gain" 0.0 "distortion" 0.5

wait_audio_cycle
* wait for at least 1 audio cycle to pass

help
* show a help message

Expand Down
Loading
Loading