Discussion:
MultiEQGUI error
wallace
2014-10-11 10:07:20 UTC
Permalink
hi all,

I am trying to use the MultiEQGUI without success.

when i launch it:
MultiEQGUI.new
i get a:
The preceding error dump is for ERROR: Message 'editor_' not understood.

How is it supposed to be used?
Are there any other graphic eq? something like MasterEQ but to put in a
SynthDef, not just on the master channel.

thanks
Marcello

_______________________________________________
sc-users mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: http://www.listarc.bham.ac.uk/marchives/sc-users/
search: http://www.listarc.bham.ac.uk/lists/sc-users/search/
James Harkins
2014-10-11 13:01:05 UTC
Permalink
On Sat, 11 Oct 2014 12:07:20 +0200
Post by wallace
hi all,
I am trying to use the MultiEQGUI without success.
MultiEQGUI.new
The preceding error dump is for ERROR: Message 'editor_' not understood.
How is it supposed to be used?
MultiEQGUI is called for you by '.edit'ing a MultiEQ object. You shouldn't use it by itself.

s.boot;

m = MixerChannel(\test, s, 2, 2);
MultiEQ(2).edit(m);

// or

g = Group.new;
b = Bus.audio(s, 2);

MultiEQ(2).edit(g, b);
Post by wallace
Are there any other graphic eq?
Neither MasterEQ nor MultiEQ are graphic EQs. They are fully parametric.

MasterEQ happens to show a graphic of the combined frequency response curves of the filter bands, but that doesn't make it a graphic EQ. "Graphic EQ" refers to an EQ with dozens of bands at evenly spaced frequencies. Parametric EQ has fewer bands, but gives you more control.

MultiEQ doesn't have a response-curve display, so I'm afraid you'll be disappointed there.
Post by wallace
something like MasterEQ but to put in a
SynthDef, not just on the master channel.
You can't put MultiEQ into a SynthDef, either. I would argue that you shouldn't put it into a SynthDef. Probably you want the same EQ to apply to lots of source nodes. So you should have separate EQ node(s) operating on audio buses, and put your synths ahead of the EQ nodes in the execution chain. MultiEQ just makes it more convenient to do this (compared to managing the filter nodes by hand).

hjh




_______________________________________________
sc-users mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: http://www.listarc.bham.ac.uk/marchives/sc-users/
search: http://www.listarc.bham.ac.uk/lists/sc-users/search/
Daniel Mayer
2014-10-11 13:14:35 UTC
Permalink
Post by wallace
Are there any other graphic eq? something like MasterEQ but to put in a
SynthDef, not just on the master channel.
Maybe like here ?

http://new-supercollider-mailing-lists-forums-use-these.2681727.n2.nabble.com/band-equalizer-td7586842.html

Greetings

Daniel

-----------------------------
www.daniel-mayer.at
-----------------------------

_______________________________________________
sc-users mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: http://www.listarc.bham.ac.uk/marchives/sc-users/
search: http://www.listarc.bham.ac.uk/lists/sc-users/search/

Loading...