effect of the muffled music

Help for Audacity on Windows.
Forum rules
ImageThis 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.
Post Reply
hagiel120
Posts: 2
Joined: Mon Aug 11, 2014 6:21 pm
Operating System: Please select

effect of the muffled music

Post by hagiel120 » Mon Aug 11, 2014 6:27 pm

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

Post by kozikowski » Mon Aug 11, 2014 10:44 pm

Try Effect > Equalization and make it look like the attached.
Koz
Attachments
Screen Shot 2014-08-11 at 3.43.47 PM.png
Screen Shot 2014-08-11 at 3.43.47 PM.png (64.03 KiB) Viewed 455 times

steve
Site Admin
Posts: 81653
Joined: Sat Dec 01, 2007 11:43 am
Operating System: Linux *buntu

Re: effect of the muffled music

Post by steve » Tue Aug 12, 2014 2:13 am

9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)

Trebor
Posts: 9962
Joined: Sat Dec 27, 2008 5:22 pm
Operating System: Windows 8 or 8.1

Re: effect of the muffled music

Post by Trebor » Tue Aug 12, 2014 2:19 am

It can be progressively-muffled with this variation of Steve's code in the Nyquist Prompt ...

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))))
http://forum.audacityteam.org/viewtopic ... 73#p220273
Funk , progressively lowering low-pass frequency.mp3
(403.31 KiB) Downloaded 37 times
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

Post Reply