Attaching Dynamics Threshold Meter To Filmstrip VU meter + making switch to alter where meter is pulling from between multiple sources
-
how can you attach the threshold meter in the dynamics module to a custom filmstrip VU meter. i already have a functioning vu meter that is pulling from Engine.getMasterPeakLevel what would i replace that with to pull from whre the threshold meter is pulling from and also
how to make a switch alter between sources of a vu meter ex input, comp threshold, output
-
im thinking i may have to create a const var
const var Dynamics = Synth.getEffect("Dynamics");
then have the vu meter pull from
Dynamics.getCompressorReduction
nope didnt work hmmm
-
yes i have tried every possible variation of
getCompressorReduction
getGainReduction
getCompressorReductionLevelhow do i see what is available to pull from the dynamics module?
-
The magic command for this is
Dynamics1.getAttribute(Dynamics1.CompressorReduction);
HiseSnippet 1320.3oc2X0raaaDDlzxLIRw1ooH8NqQNHCjZH4eRKPPgksj+CIxVvx0o4TvJxURaM0tDjKUqZQdW5sdruB9AvG5iPO1i9Xu0N6RRwkRrpRF0N1kvFf6LyNy2N6re6H1viYg88YdZ54OcfKVSeAilCn7tU6hHTsCqooujQcjOG6YFJZmAtHeersltdt8EBzyOul74ps1A4fnV3DQZZmwHV32P5Q3IRaT40DGm8P13SI8TrdiJGZwnUYNr..O4LJo4hrNG0AeDRX1bFZ5OXWaBm40ji3XeM842gYOnYW12SCs+LhOokCVLnrVSvQgh2i4XKPr3cspcIN1MhW29ZZ5FMRxB4ByBOynNwlLTdR13SjJLSlgZ9PetIAuxWS3oq.u4Cg2SMZZ4Qb4IZDX6wFGRgMp1HXKPEVg1pM2enaTkAVP4q1CcNdOOXvvYT7kkJ8ByMKUZkWsXgEK.aD9by9HOyZCnndDK+xlesorzX0NX9tsais3EWdnxkGcZbv7cocHT7pVdXHeH1q8Nt02IlWnw7U8wbo3pHGmVvdcw1ATKNgQKtRgepPdge5C9YXTDgdaN2izJfiKlHtJqmqmLQbB1NP5AQHxC+8ZJqUYQfNC4DfK1ekWU3Cv+pPUZBDl3jCDDgCYTXPwkkZWdHh4HuPLWbSYpJFwlL5QLN93HnW3Ciooc6rTIBpGywAbXFZCiz+7zJRC50B68BXc.qtX6f5jzEhOX5JDsBS.JFxnGRI7icwQiSJUKmQopVTFTTzFAPvTtrjconR1lNDarmFAbxCMj4VMI1U4Qz9lCqg3nX2.dDhhK1iSDKF8Z39.oR3Ig7F0v9myYtRai1zfiz+qA8G.iz+EHbCDub.7hOefij.7.lG4Gg3hb.tpwN6AL.L6.GDOMsffKLRArCk57m3LF0mvGntFmAthRYxUj4FvTB2mZzfvs5lMdmKC7BaE2z3Mh4cQiPtkDvNuwde6sLM6mFhkBFwTLQ7qCYbF4ZPNdWJBBosZFSH9zt.sTWHvip.Xw.9tHoWb4k+4VBomfcvH+3yBUJ7qmWIgZarPb0VIJGMPWb4B6egBsnXWN1squ9mq31THAdddEU1TU7.Ouqh7tbrWFq2HMYtjizMZrtZqHEiEHUTTGtrJvMC2MtB8boKMxMckFYTYdBKfSncpifaaDbEGEzqIzWhEFJLoTriuf1XNAmW33RhwBHzDSskC9K3IRYYwX8HkkiUpV8+rvJtGa7VTer7ZVYI2mIG2l40ybeLE6INFWdB8f8aSaOXtScOXGawAHbpGh56x7wkU87H5VSUWMLOfl17PQorRr71CVdJ18nJwBWSUXCDMkyfwo7Tcw1T7veeqvBzlXX0XeruErXE4N0RuFAN932Rr4cKqNwDwqoJdzJqojzI80BJ1eGoOz+6ua4F8pvqIe9SBw6CM19fZMOI5JP46POp8wNPyEoOUUmQYtcYThkZI1IXfLnSGbpxnLWRgDcUC75iSe.vBMXLoixJFK4MX.ZphOHEq5yqHc2PAO3mqzL.5OUkO3cWLFy5FU10hAaO3IsEbs4MSUDOoxjEMBWjlR9m61sKsTLVC2QtaC1ELjkE2GxqOwHpf8dQhcIinyR2GRsSrC+b+OpC+ahKvfVIL+3+a4tM5.81HF8PVdr2aE98.DWQ7HoDXcSkeWu7F0EiMG9g.D4ldP2Mu2xRTa7EP1I6Yr1LOi0m4YrwLOiMm4Y7xYdFe4LOiuZByPzJ41AbVuv5cPPicke.Fc8g+NO8bZ+MPgYYM7
-
i literally just figured it the second you typed that lol
-
@Christoph-Hart how can i make a slider with 3 slots alter between sources of signal for the meter. or a 3 state button?
-
@mwplugs Hard without a snippet.
You'll need either a slider with 3 pos (min:0, max:2, stepSize:1), or 3 buttons in a radio group
put your 3 meter sources in an arraysource = [in, out, comp]
From there you can paint the meter
meterValue = source[sliderPos]
Dirty without a snippet, but that's kind of the idea...
-
@ustk any possibility of an example code