What are the best frequency crossover cutoff points?

recommended
Well, like almost everything in professional music production, there are no ideal settings that will work for every source material, but some audio software plug-ins include a "learn mode" feature that will automatically do that for you, and I'd highly recommend you give it a go as a starting point for whatever you are attempting to do. Be it sound mixing or audio mastering.

Bombastus

newbie
Well, like almost everything in professional music production, there are no ideal settings that will work for every source material, but some audio software plug-ins include a "learn mode" feature that will automatically do that for you, and I'd highly recommend you give it a go as a starting point for whatever you are attempting to do. Be it sound mixing or audio mastering.
 
recommended
B

Benzorghini

guest
For example, if I want to slightly bring forward the midrange using iZotope Ozone's Exciter by precisely 3 octaves in terms of width with the center frequency being 1600 Hz or by 3 ⅔ octaves while the center frequency is roughly 3500 Hz.

If your center frequency is 1600 Hz with a width of 3 octaves (i.e., Q 0.404) that means your lower cutoff frequency is approximately around 561 Hz whilst your upper cutoff frequency is approximately around 4561 Hz. Therefore, this should perhaps get the job done:

BandwidthCenter frequency in HzLink band 1 in HzLink band 2 in HzLink band 3 in Hz
3 octaves1600anywhere you want (or disable it)5614561
3 ⅔ octaves3500anywhere you want (or disable it)96912636
 

Attachments

  • iZotope, Inc. Ozone's Exciter.png
    iZotope, Inc. Ozone's Exciter.png
    66.8 KB · Views: 50
Benzorghini how did you calculate that?

Download and install Eclipse IDE or IntelliJ IDEA Community Edition and run this code.

Java:
package test;

import java.util.Scanner;

public class CutoffCalculator {
  public static void main(String[] args) {
    Scanner scanner = new Scanner(System.in);

    // Read in center-frequency and quality factor from the user
    System.out.print("Enter center frequency: ");
    double cf = scanner.nextDouble();
    System.out.print("Enter quality factor: ");
    double qf = scanner.nextDouble();

    double a = cf;
    double b = Math.sqrt((1 / (2 * qf)) * (1 / (2 * qf)) + 1);
    double c = 1 / (2 * qf);

    double d = Math.round(1000 * a * (b - c)) / 1000;
    System.out.println("F1out: " + d);

    double e = Math.round(1000 * a * (b + c)) / 1000;
    System.out.println("F2out: " + e);
  }
}

F1out that's your lower cutoff frequency

F2out that's your upper cutoff frequency
 

Attachments

  • Munyaradzi Mafaro - Java program to calculate lower and upper cutoff frequency.png
    Munyaradzi Mafaro - Java program to calculate lower and upper cutoff frequency.png
    108.9 KB · Views: 49
B

Benzorghini

guest

For 3 octaves​

QCenter freq (Hz)Link band X (Hz)Link band Y (Hz)
3 octaves7000247519801
3 octaves5800205016407
3 octaves4800169713578
3 octaves4000141411315
3 octaves340012029618
3 octaves290010258203
3 octaves21507606082
3 octaves18506545233
3 octaves16005664526
3 octaves13704843875
3 octaves11704143310
3 octaves10003542829
3 octaves8402972376
3 octaves7002471980
3 octaves5702021612
3 octaves4501591273
3 octaves25088707
3 octaves15053424
3 octaves5018141

The most useful center frequencies above are prolly from 570 to 3400 Hz. And as for Q 1 or Q 0.71 that is just too narrow. I am highly skeptical if it even works. It prolly doesn't. Another thing—assuming I remember this correctly—you can't have the top band higher than say 10 kHz. I am not sure about the lowest band. It must be somewhere around 100 Hz if my memory is right.
 

Similar threads

E
Replies
7
Views
126
Dzvuke
D
Top