Limitations via effects
Forum rules
This forum is for Audacity on Windows.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the 1.2.x and 1.3.x forums.
-
DominicJosephRico
- Posts: 6
- Joined: Tue Nov 03, 2015 12:27 am
- Operating System: Please select
Limitations via effects
First of all thank you for this software. I've used it many-a year. I'm 22, going into radio production, and on the side I make music, and have found audacity aspite all others to be the most user friendly of the music software industry. On an older version of audacity I remember you could go over the limitations of hz/other aspects of the effects i.e. beyond the table: you could input manually say...9999hz on tremolo with a 50% wet level at a saw wave... and this would be a form of very smooth distortion with an added extratone-esque like sound... but now it seems the newer versions of audacity have prevented this feature because when I make an input they do not let me go over certain amounts, and I'm now limited to ten hz... "value not in range" it says... is there a fix to this? Is it because I'm using windows ten, or should I downgrade a version?
-
Gale Andrews
- Quality Assurance
- Posts: 41761
- Joined: Fri Jul 27, 2007 12:02 am
- Operating System: Windows 10
Re: Limitations via effects
Yes input is now validated for consistency so you cannot enter values outside a slider value.
The next 2.1.2 release of Audacity will let Nyquist plugins (where appropriate) use a text box without slider that does not have any practical range limit. However Tremolo itself will not be changed for 2.1.2.
If you want to change the ranges that are validated, open the tremolo.ny file in Audacity's Plug-Ins folder in your favourite text editor. For example you could change:to
See http://wiki.audacityteam.org/wiki/Nyqui ... ce#control.
Gale
The next 2.1.2 release of Audacity will let Nyquist plugins (where appropriate) use a text box without slider that does not have any practical range limit. However Tremolo itself will not be changed for 2.1.2.
If you want to change the ranges that are validated, open the tremolo.ny file in Audacity's Plug-Ins folder in your favourite text editor. For example you could change:
Code: Select all
;control lfo "Frequency (Hz)" real "" 4 0 10Code: Select all
;control lfo "Frequency (Hz)" real "" 4 0 10000Gale
________________________________________FOR INSTANT HELP: (Click on Link below)
* * * * * Tips * * * * * Tutorials * * * * * Quick Start Guide * * * * * Audacity Manual
* * * * * Tips * * * * * Tutorials * * * * * Quick Start Guide * * * * * Audacity Manual
Re: Limitations via effects
At such a high frequency it's really not a "tremolo" effect any more, but rather an "Amplitude Modulation (AM)" effect.DominicJosephRico wrote:9999hz on tremolo with a 50% wet level at a saw wave... and this would be a form of very smooth distortion with an added extratone-esque like sound...
There are some other modulation effects that you may find interesting here: http://wiki.audacityteam.org/wiki/Nyqui ... on_Effects
(Download and installation instructions: http://wiki.audacityteam.org/wiki/Downl ... s#download)
I notice that there is not an "AM" modulator effect there (and the "Ring Modulator" could do with some improvements). If you would be interested in a purpose made AM modulator (rather than just abusing the Tremolo effect
I think that a good AM effect would be a nice addition.
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
-
DominicJosephRico
- Posts: 6
- Joined: Tue Nov 03, 2015 12:27 am
- Operating System: Please select
Re: Limitations via effects
Thank you for the suggestions, I will look into am, and ring modulation, I will be looking forward to 2.1.2 since there will be less limitations, and then I could abuse tremolo AND A.M. and Ring-mod to my hearts content, I also looked into the situation and second the motion for an option prompt like "continue anyway?". Have a good one.
Re: Limitations via effects
You can abuse them to your hearts content in Audacity 2.1.1DominicJosephRico wrote:and then I could abuse tremolo AND A.M. and Ring-mod to my hearts content
One really nice thing about Nyquist plug-ins is that they can be modified very easily using no more than a plain text editor (NotePad++ is recommended, but plain old "NotePad" will do). Nyquist ".NY" files are just "plain text" with the usual ".TXT" extension changed to ".NY" (See here for how to show the file extension; http://windows.microsoft.com/en-gb/wind ... =windows-7).
Near the top of the .NY file are "headers" that begin with a single semicolon. The semicolon tells Nyquist to ignore the line, but Audacity is able to read them. When Audacity sees a correctly formed line beginning with ;control Audacity will create a control such as a slider widget, a text widget, a multi-choice widget...
For Slider widgets, there are three numbers at the end of the ';control" line which set the default, minimum and maximum values respectively. See here for more information about ;control widgets: http://wiki.audacityteam.org/wiki/Nyqui ... in_Widgets
After modifying a Nyquist plug-in, ensure that it has the required ".NY" file extension (if you use "NotePad", the file extension may be changed to ".TXT", in which case you would need to rename it back to ".NY")
If you have any questions about modifying Nyquist plug-ins. please ask on the Nyquist board of this forum: http://forum.audacityteam.org/viewforum.php?f=39
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)