RomeoDespres/reapy

Fx parameters value string

Closed this issue · 2 comments

Hi!
Is it possible to retrieve the value string of a parameter?
I can get the name, the value float but the plugin also sends a string with a textual value. For example,. BBC SO Vst Expression parameter's value string is 0-100%. Some others are in 'Hz', etc..
Thanks!

import reapy as rpr

pr = rpr.Project()
track = pr.selected_tracks[0]
fx = track.fxs[0]
param = fx.params['Wet']

print(param.formatted)