Adding a threshold to the equalizer
Forum rules
If you require help using Audacity, please post on the forum board relevant to your operating system:
Windows
Mac OS X
GNU/Linux and Unix-like
If you require help using Audacity, please post on the forum board relevant to your operating system:
Windows
Mac OS X
GNU/Linux and Unix-like
-
Murky effects
- Posts: 42
- Joined: Sun Dec 12, 2010 9:51 pm
- Operating System: Please select
Adding a threshold to the equalizer
being able to set a Threshold so that you could clip certain frequencies without raising them.
It would be very useful for making shaping distortion. the lower the red line is against the blue line the more distortion you would get.
is this easy to understand or should I try and explain it differently? I know sometimes my writing is alittle off.
It would be very useful for making shaping distortion. the lower the red line is against the blue line the more distortion you would get.
is this easy to understand or should I try and explain it differently? I know sometimes my writing is alittle off.
Re: Adding a threshold to the equalizer
Personally I think that goes against the purpose of an Equalizer. IMO an Equalizer should be (ideally) free of distortion and adding a clipping control would be confusing to many users.
I'm not against the idea as an effect.
Currently the only distortion effect that Audacity ships with is the Leveller and we don't even have any listed here: http://wiki.audacityteam.org/wiki/Nyqui ... t_Plug-ins
I'd be in favour of some distortion effects, just not built into the Equalizer. Would it work for you as an effect in its own right rather than as an add-on to the Equalizer? If so, could you describe in more detail what you'd like (ideally) the effect to do?
I'm not against the idea as an effect.
Currently the only distortion effect that Audacity ships with is the Leveller and we don't even have any listed here: http://wiki.audacityteam.org/wiki/Nyqui ... t_Plug-ins
I'd be in favour of some distortion effects, just not built into the Equalizer. Would it work for you as an effect in its own right rather than as an add-on to the Equalizer? If so, could you describe in more detail what you'd like (ideally) the effect to do?
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
-
Murky effects
- Posts: 42
- Joined: Sun Dec 12, 2010 9:51 pm
- Operating System: Please select
Re: Adding a threshold to the equalizer
It would be useful as a Distortion effect. the main purpose would be shaping distortion in a way that would usually take a lot more work.
it works as an equalizer but with a threshold envelope added to it.
it would also be cool if it could emulate a transistor style of distortion; and toggle between types if that makes sense.
Yea I do agree that for most users it would seem confusing as an equalizer.
it works as an equalizer but with a threshold envelope added to it.
it would also be cool if it could emulate a transistor style of distortion; and toggle between types if that makes sense.
Yea I do agree that for most users it would seem confusing as an equalizer.
-
kozikowski
- Forum Staff
- Posts: 68902
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Re: Adding a threshold to the equalizer
Transistor sound would need to be complex. It's hard clipping at the top and crossover/transient intermodulation distortion in the quiet bits. That's why all the early amplifiers were rated at full output -- and isn't that great? No, it's not, because at quiet volumes, the amplifiers were terrible.
Koz
Koz
-
Murky effects
- Posts: 42
- Joined: Sun Dec 12, 2010 9:51 pm
- Operating System: Please select
Re: Adding a threshold to the equalizer
Could any one make this effect? just if you're up for the challenge. I have no idea how to program computers.
Doesn't need transitor distortion.
Doesn't need transitor distortion.
Re: Adding a threshold to the equalizer
I've had a play with the the idea, using the Equalizer to split a sound into frequency bands and then applying clipping to one of the frequency bands. The effect is perhaps not as expected. Clipping produces a broad range of additional frequencies outside of the frequency range that the distortion is being applied to. The effect is not dissimilar to clipping the full audio band, except that the clipping only happens when a sound has a relatively high level in that particular band, so it produces an intermittent "crunch" when the audio hits that frequency range. It sounds similar to damaged loudspeaker and is not pleasant.
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
-
Murky effects
- Posts: 42
- Joined: Sun Dec 12, 2010 9:51 pm
- Operating System: Please select
Re: Adding a threshold to the equalizer
"It sounds similar to damaged loudspeaker and is not pleasant."
Its not meant to be pleasant.
I'd be using this kind of thing to produce the kind of sound steven wilson (Porcupine tree) has on his voice in some songs.
I think the computer would need to process the frequency's the hit the threshold first; then run the normal equalization after. its weird because if you boosted the blue line say 2300 to hit the red it would have to do it in reverse. so It would need to do them simultaneously but ensure that the normal equalization has the last say.
the blue line is the Normal equalization.
When Experimenting with distortion we tend not to want a "Pleasant" sound
my brother is doing Computer science. Do you think this would be over his head?
I could ask him to give it a try.
Its not meant to be pleasant.
I'd be using this kind of thing to produce the kind of sound steven wilson (Porcupine tree) has on his voice in some songs.
I think the computer would need to process the frequency's the hit the threshold first; then run the normal equalization after. its weird because if you boosted the blue line say 2300 to hit the red it would have to do it in reverse. so It would need to do them simultaneously but ensure that the normal equalization has the last say.
the blue line is the Normal equalization.
When Experimenting with distortion we tend not to want a "Pleasant" sound
my brother is doing Computer science. Do you think this would be over his head?
I could ask him to give it a try.
Re: Adding a threshold to the equalizer
No, I mean it really does sound like a damaged car radio speaker. Not at all musical. Steven Wilson would not like it.Murky effects wrote:"It sounds similar to damaged loudspeaker and is not pleasant."
Its not meant to be pleasant.
A good approach is to use the tools in Audacity to manually create the sound that you want.Murky effects wrote:my brother is doing Computer science. Do you think this would be over his head?
I could ask him to give it a try.
When you have worked out what processes are required to achieve the desired effect, then it may be possible to program a plug-in to reproduce that effect.
To deliberately clip audio you can use the following code in the "Nyquist Prompt" effect:
Code: Select all
(clip s 0.5)The following effects will also create distortion when used at strong settings:
Leveller (Effect menu)
Soft Clipping Limiter
Broadcast Limiter
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
-
Murky effects
- Posts: 42
- Joined: Sun Dec 12, 2010 9:51 pm
- Operating System: Please select
Re: Adding a threshold to the equalizer
K thanks. I'll see what the broadcast limiter is like.