effect of the muffled music
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.
effect of the muffled music
Do you know how to do the music at some point was muffled, like from behind the wall? 
-
kozikowski
- Forum Staff
- Posts: 69384
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Re: effect of the muffled music
Try Effect > Equalization and make it look like the attached.
Koz
Koz
- Attachments
-
- Screen Shot 2014-08-11 at 3.43.47 PM.png (64.03 KiB) Viewed 455 times
Re: effect of the muffled music
or the Low Pass filter: http://manual.audacityteam.org/o/man/lo ... ilter.html
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
Re: effect of the muffled music
It can be progressively-muffled with this variation of Steve's code in the Nyquist Prompt ...
http://forum.audacityteam.org/viewtopic ... 73#p220273
If you reverse the track then apply the code , (then reverse it back) , it gradually becomes less muffled,
similar to ... https://soundcloud.com/glitchhop/amb-get-loose#t=2:33
Code: Select all
(setq start-freq 22000) ; cannot be greater than 1/2 the sample rate
(setq end-freq 200)
(setq passes 6) ; more passes for a steeper filter cut-off
(setq sweep-type 0) ; 1 for a linear sweep, 0 for exponential sweep
(let* ((nyq (/ *sound-srate* 2.0))
(f0 (max 0 (min nyq start-freq)))
(f1 (max 0 (min nyq end-freq))))
(if (= sweep-type 0)
(setf lpfreq (pwev f0 1 f1))
(setf lpfreq (pwlv f0 1 f1)))
(dotimes (i passes s)
(setf s (lp s lpfreq))))
If you reverse the track then apply the code , (then reverse it back) , it gradually becomes less muffled,
similar to ... https://soundcloud.com/glitchhop/amb-get-loose#t=2:33