Find out what effects have been applied
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.
Find out what effects have been applied
I'm trying to figure out what effects have been applied to the second song below, with little success besides that it might be compression or purposeful clipping. How would I find out *exactly* what they are?
https://www.youtube.com/watch?v=V8VvkrYjWMY
https://www.youtube.com/watch?v=PX7zPlQjAr8
https://www.youtube.com/watch?v=V8VvkrYjWMY
https://www.youtube.com/watch?v=PX7zPlQjAr8
-
kozikowski
- Forum Staff
- Posts: 68938
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Re: Find out what effects have been applied
Contact the production agency or the artist. There's no way to work it back from the finished song.How would I find out *exactly* what they are?
Koz
Re: Find out what effects have been applied
That's unfortunate. The original poster is gone...
-
kozikowski
- Forum Staff
- Posts: 68938
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Re: Find out what effects have been applied
You can get something similar with multiple passes through Effect > Leveler at its highest setting. Intentionally creating clipping distortion in Audacity is a little rough because it was designed internally not to overload.
Or try Effect > Simple Distortion.
Koz
Or try Effect > Simple Distortion.
Koz
Re: Find out what effects have been applied
We don't currently ship a distortion effect, that is a feature request.kozikowski wrote:Or try Effect > Simple Distortion
Please add your vote here if you think that Audacity should include (at least) one distortion effect. http://forum.audacityteam.org/viewtopic ... 33#p241233
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Find out what effects have been applied
Yes, leveler gets a similar effect, but a frequency analysis shows that there's something else in a higher frequency that I can't seem to replicate.
Re: Find out what effects have been applied
You can get clipping by using Amplify to push the peaks above 0dB. (Click the Allow Clipping check box.) Then export to 16-bit WAV. The WAV file will be clipped at 0dB. (Audacity will happily go above 0dB internally without clipping, so it's not clipped 'till you export to an integer WAV format.)
The higher you go the more distortion you'll get. You may not hear the distortion with a couple dB of clipping, but with 20 dB of clipping it should sound absolutely terrible!
Clipping will generate higher frequency harmonics (harmonic distortion) but I don't know if you'll get the same high frequencies as your example.
Effect - Hard Limiter can also introduce clipping (at whatever level you set). If you use the limiter, you may want to Amplify afterwards to re-boost the volume.
The higher you go the more distortion you'll get. You may not hear the distortion with a couple dB of clipping, but with 20 dB of clipping it should sound absolutely terrible!
Clipping will generate higher frequency harmonics (harmonic distortion) but I don't know if you'll get the same high frequencies as your example.
Effect - Hard Limiter can also introduce clipping (at whatever level you set). If you use the limiter, you may want to Amplify afterwards to re-boost the volume.
Re: Find out what effects have been applied
A little bit of code that can be run in the Nyquist Prompt (http://manual.audacityteam.org/o/man/ny ... rompt.html) to add distortion:
Code: Select all
(setq amount 4) ; bigger number for more distortion
(defun hardclip (s amount)
(setq amount (db-to-linear (- amount)))
(mult (/ 0.99 amount)(clip s amount)))
(multichan-expand #'hardclip s amount)
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: Find out what effects have been applied
The second YouTube sounds hideous , but if you want to replicate it maybe try decimation , (which does add high frequencies) ...in3D wrote:I'm trying to figure out what effects have been applied to the second song below, with little success besides that it might be compression or purposeful clipping. How would I find out *exactly* what they are?
https://www.youtube.com/watch?v=V8VvkrYjWMY
https://www.youtube.com/watch?v=PX7zPlQjAr8
http://plugin.org.uk/ladspa-swh/docs/la ... th_sEc2.99
-
Gale Andrews
- Quality Assurance
- Posts: 41761
- Joined: Fri Jul 27, 2007 12:02 am
- Operating System: Windows 10
Re: Find out what effects have been applied
If you want that, go here http://manual.audacityteam.org/o/man/ef ... PA_Effects and use the links for "Additional LADSPA plug-ins can be downloaded".Trebor wrote:try decimation http://plugin.org.uk/ladspa-swh/docs/la ... th_sEc2.99
Gale
________________________________________FOR INSTANT HELP: (Click on Link below)
* * * * * Tips * * * * * Tutorials * * * * * Quick Start Guide * * * * * Audacity Manual
* * * * * Tips * * * * * Tutorials * * * * * Quick Start Guide * * * * * Audacity Manual