Allpassphase 【NEWEST — 2026】
In broadcast audio and vinyl mastering, engineers use a tool called a Phase Rotator (a specialized first-order all-pass filter). Why? Because asymmetrical waveforms waste headroom.
Consider a bass guitar recording. Due to microphone placement or preamp distortion, the waveform might be asymmetrical (more positive voltage than negative, or vice versa). By applying a specific allpassphase rotation (usually 90° at the fundamental frequency), an engineer can balance the waveform without changing the sound's tone. This gives up to +3 dB of extra headroom before clipping.
To understand allpassphase, you must understand group delay—the derivative of phase with respect to frequency. Group delay measures the time delay each frequency component experiences as it passes through a system.
In a perfect, linear-phase system (like a pure digital delay line), all frequencies are delayed by the same amount. The waveform shape remains identical. However, in a non-linear phase system (like an allpass filter), different frequencies arrive at different times.
Consider a transient sound—a sharp click or a snare drum hit. This transient is composed of a wide spectrum of frequencies. If an allpass filter shifts the phase of the high frequencies relative to the low frequencies, those frequency components no longer align perfectly in time. The result? The peak amplitude of the transient is reduced, the waveform becomes asymmetrical, and the "punch" is softened—even though the frequency spectrum (the EQ) looks identical.
This is the paradox of allpassphase: The sound looks the same on a spectrum analyzer, but it sounds different to the human ear.
For a 1st-order all-pass: [ \tau_g(\omega) = \frac2\omega_0\omega_0^2 + \omega^2 ] Maximum delay at DC: (2/\omega_0).
The keyword allpassphase represents the frontier of audio engineering—the shift from simply controlling volume to controlling the flow of time itself. It is a humble tool: it does not boost bass, slash treble, or compress dynamics. Yet, it can make a mix sound louder, a reverb sound smoother, and a room sound wider.
Whether you are debugging a comb filter in a parallel processing chain, designing a lush reverb for a video game, or simply trying to squeeze 2 dB more headroom out of a bass track, remember the all-pass filter. It passes every frequency, yet it changes everything.
The next time you hear a sound that feels "smeared" or "phasey"—or miraculously "wide"—look for the allpassphase. It is the hidden architect of your listening experience.
Keywords: allpassphase, all-pass filter, phase rotation, group delay, Schroeder reverb, audio phase cancellation, minimum phase, maximum phase, transient smearing.
The AllPassPhase is a specialized VST audio plugin designed to introduce phase dispersion, a process that shifts the timing of various frequencies within an audio signal without changing their volume (magnitude response). This effect is often used to "soften" transients, creating a characteristic "laser zap" sound, or to give a unique, smeared character to bass sounds. Deep Piece: How All-Pass Phase Shifting Works allpassphase
An all-pass filter (APF) is a precision tool that allows all frequencies to pass through with unitary amplitude but varies their phase. Unlike standard high-pass or low-pass filters that cut certain frequencies, an all-pass filter's primary job is phase-only manipulation.
Phase Dispersion: By repeatedly running audio through multiple all-pass filters, the plugin creates a massive phase shift that causes "transient-smearing". This effectively pushes different frequency components forward or backward in time relative to one another. Key Parameters:
Frequency: Determines which part of the spectrum is most affected by the shift.
Q (Quality Factor): Controls the "pinch" or rate of phase change; lower values create more pronounced dispersion around the target frequency.
Intensity: Sets the number of times the audio passes through the filters, increasing the "smeared" effect and CPU usage. Practical Applications
While the AllPassPhase plugin focuses on creative sound design, all-pass filters are used across engineering to solve technical issues:
All-pass filters are the "unseen architects" of the audio world. Unlike most filters that cut out bass or treble, an all-pass filter lets every frequency through at the same volume, but it manipulates their timing (or phase) as they pass through [1, 2].
In simple terms, imagine a group of runners (frequencies) starting a race together. An all-pass filter doesn't stop any of them, but it makes certain runners take a slightly longer path, causing them to cross the finish line at different times [2]. This shift in phase is critical for:
Phasers: Creating that classic "whooshing" guitar effect by sweeping phase shifts against a dry signal [4].
Speaker Alignment: Ensuring that sound from a woofer and a tweeter reaches your ears at the exact same moment [1, 5].
Reverb Design: Diffusing sound to create the dense, natural decay found in large rooms [3]. In broadcast audio and vinyl mastering, engineers use
By controlling phase without touching amplitude, all-pass filters provide the precision needed to fix acoustic smears or create immersive textures in a mix [2, 5].
Since "AllPassPhase" is specifically a software plugin created by enummusic, there isn't a single formal academic "white paper" written just for it. However, its core functionality is based on classic digital signal processing (DSP) principles. 📄 Relevant Research & Documentation
If you are looking for the "paper" behind the math or the project itself, here are the most relevant resources:
Official Project Source: The allpassphase GitHub Repository contains the original source code, version history, and algorithmic updates (such as the shift from crossover to CPU-friendly all-pass filters).
The Math Behind It: A relevant academic reference for the formulas used in such filters is "Splitting the Unit Delay – Tools for Fractional Delay Filter Design" by Laakso et al. (1996). It details how all-pass filters manipulate phase without changing magnitude.
Implementation Example: You can find specific code implementations of the allPassPhase function in papers like Modélisation physique d'instruments de musique from Stanford’s CCRMA. 🎛️ What AllPassPhase Does
Phase Disperser: It acts as an imitation of the Kilohearts Disperser, used to "smear" transients.
Sound Design: Stacking multiple instances can create "laser" or "robotic" timbres often heard in bass music.
Utility: It helps fix "bubbly" low-end qualities or manages asymmetrical waveforms. Releases · enummusic/allpassphase - GitHub
Since "Allpassphase" is not a widely recognized mainstream product or brand name, it sounds like a specialized audio plugin (likely a phase manipulation tool or an all-pass filter plugin) or possibly a username/handle.
Assuming this is an audio plugin designed for phase manipulation (given the name "Allpass" is a technical audio term), here is a helpful review template you can use or adapt. Despite its utility, misinformation abounds
Despite its utility, misinformation abounds. Let us clarify a few points:
For the audio programmer or DSP enthusiast, implementing an allpass filter is straightforward. Here is a Python/NumPy snippet for a first-order allpass:
import numpy as np
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
The coefficient a is related to cutoff frequency fc and sample rate fs by:
[ a = \frac\tan(\pi \cdot fc / fs) - 1\tan(\pi \cdot fc / fs) + 1 ]
For a second-order allpass (more phase shift and steeper group delay peak), the transfer function becomes:
[ H(z) = \fraca_2 + a_1 z^-1 + z^-21 + a_1 z^-1 + a_2 z^-2 ]
Second-order allpass filters are the building blocks of parametric equalizers and graphic equalizers that preserve a flat magnitude response while adjusting phase.
Passive loudspeaker crossovers introduce severe phase shifts near the crossover frequency. An active DSP can insert an allpass filter to equalize the phase response, ensuring that the woofer and tweeter outputs sum coherently. This restores the waveform symmetry and improves the stereo imaging. High-end studio monitors (e.g., from Genelec or Neumann) include adjustable allpass filters for time alignment.