Hi,
I often find myself wanting to apply processing to specific frequency bands. I was wondering what is the best way to split a track into separate tracks containing different frequency bands so that it can be recombined with minimal artifacts?
Cheers,
Chris
Best Way to Bandsplit Audio
Forum rules
This forum is for Audacity on macOS 10.4 and later.
Please state which version of macOS you are using,
and the exact three-section version number of Audacity from "Audacity 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 macOS you are using,
and the exact three-section version number of Audacity from "Audacity 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.
Re: Best Way to Bandsplit Audio
Is this a question about Nyquist, or about using effects and functions that already exist in Audacity?
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
-
Robert J. H.
- Posts: 3633
- Joined: Thu May 31, 2012 8:33 am
- Operating System: Windows 10
Re: Best Way to Bandsplit Audio
The first step is to duplicate the track according to the number of bands you wish eventually.cpsmusic wrote:Hi,
I often find myself wanting to apply processing to specific frequency bands. I was wondering what is the best way to split a track into separate tracks containing different frequency bands so that it can be recombined with minimal artifacts?
Cheers,
Chris
Then follows the separation per high/low-pass filtering.
(the code snippets are for the Nyquist Prompt)
- First Track
Code: Select all
(lp s 500)Code: Select all
(hp s 500)You can replace them with those for 12,24, 36 or 48 dB, namely
(high-/)lowpass2, lowpass4, lowpass6 or lowpass8.
Unfortunately, these filters are not complementary--they do not add up to one.
The trick is to use just one of them and to take the difference.
- First track
Code: Select all
(lowpass8 s 500)Code: Select all
(diff s (lowpass8 s 500))This is due to the phase shifts introduced.
You could also use FIR filters instead of IIRs that do have a linear phase response. (split the example to mono)
Re: Best Way to Bandsplit Audio
I'm interested in trying the de-essing technique described here:steve wrote:Is this a question about Nyquist, or about using effects and functions that already exist in Audacity?
http://nerds-central.blogspot.com.au/20 ... do-it.html
I wanted to get more info about how to split and recombine the audio while minimising artifacts. I wasn't sure which filters to use or how to set them up.
Re: Best Way to Bandsplit Audio
Use the Equalization effect. That's an FFT filter so it does not have the phase shift issues that the "High Pass" and "Low Pass" effects have.
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)