Allpassphase: Extra Quality
is a specialized, open-source audio processing tool designed to alter the phase relationship of a sound wave without changing its volume. Developed by enummusic on GitHub , this Virtual Studio Technology (VST) plugin serves as a powerful, free alternative to premium software like Kilohearts Disperser.
While it does not change the EQ balance, stacking these filters provides highly sought-after utility in modern sound design:
Every allpass filter has a center or "turnover" frequency. At this specific frequency, the phase shift is exactly half of the filter's total phase shift capability (typically shifted by -90 or -180 degrees).
You cannot replace a linear phase EQ with an allpassphase network—they solve opposite problems. allpassphase
The Hilbert transform (a 90° all-pass phase shifter) is essential for SSB generation.
In radar systems and telecommunications, all-pass filters can simulate medium dispersion. This allows engineers to stretch pulses in time (chirped signals) or compress them back down to improve signal-to-noise ratios. 4. Making Non-Minimum Phase Systems Minimum Phase
The is unique because its only job is phase manipulation. It gives the engineer the power to control the "smear" or the "tightness" of a sound’s transient response without touching the tonal balance. is a specialized, open-source audio processing tool designed
def allpass_first_order(x, a): y = np.zeros_like(x) y_prev = 0 x_prev = 0 for n in range(len(x)): y[n] = a * x[n] + x_prev - a * y_prev x_prev = x[n] y_prev = y[n] return y
Pole-zero plot (analog):
In short:
Technically, an all-pass filter works by placing in a specific symmetrical relationship in the Z-plane (for digital) or S-plane (for analog).
In practice, allpass filters are typically implemented in one of two ways: analog circuitry or digital algorithms.
Second-order allpass filters are the building blocks of parametric equalizers and graphic equalizers that preserve a flat magnitude response while adjusting phase. At this specific frequency, the phase shift is