Skip to content

Instantly share code, notes, and snippets.

@sletz
Created May 31, 2018 17:41
Show Gist options
  • Save sletz/28c0ec95c0a0148af8c29b91f43aa198 to your computer and use it in GitHub Desktop.
Save sletz/28c0ec95c0a0148af8c29b91f43aa198 to your computer and use it in GitHub Desktop.
declare name "dbmeter";
declare version "1.0";
declare author "Grame";
declare license "BSD";
declare copyright "(c)GRAME 2006";
//-------------------------------------------------
// A dB Vumeter
//-------------------------------------------------
import("stdfaust.lib");
vmeter(x) = attach(x, envelop(x) : vbargraph("[unit:dB]", -70, 10));
hmeter(x) = attach(x, envelop(x) : hbargraph("[unit:dB]", -70, 10));
envelop = abs : max(ba.db2linear(-70)) : ba.linear2db : min(10) : max ~ -(80.0/ma.SR);
null(x) = attach(0,x);
process = hgroup("8 channels dB meter", par(i,8, vgroup("%i", vmeter : null)));
declare name "dbmeter";
declare version "1.0";
declare author "Grame";
declare license "BSD";
declare copyright "(c)GRAME 2006";
//-------------------------------------------------
// A dB Vumeter
//-------------------------------------------------
import("stdfaust.lib");
vmeter(x) = attach(x, envelop(x) : vbargraph("[unit:dB]", -70, 10));
hmeter(x) = attach(x, envelop(x) : hbargraph("[unit:dB]", -70, 10));
envelop = abs : max(ba.db2linear(-70)) : ba.linear2db : min(10) : max ~ -(80.0/ma.SR);
null(x) = attach(0,x);
process = hgroup("8 channels dB meter", par(i,8, vgroup("%i", vmeter : null)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment