8Z-Audio

Signal-Intelligent Lossless Audio Compression

Creator & Lead Architect
Bojan Dobrecevic
AIM³ Institute, Ljubljana
Project Timeline (v1.0 to v1.7H)
Conception: Feb 19, 2026
v1.0 Build: Feb 20, 2026
v1.7H Final: Feb 23, 2026
AI Coders & Review Board
Claude · Gemini · ChatGPT
Grok · Qwen · Kimi · GLM · DeepSeek

1. The Philosophy & The Root

Before the technical patterns, before the Minimum Description Length (MDL) battles, and before the Python scripts, there is a worldview. Everything in the 8Z framework flows from a single philosophical stance:

"Never accept 'impossible' just because someone said so. Demand hard evidence for the limit. If there is none, the limit is not real."

FLAC applies fixed heuristics to every audio frame. It guesses which Linear Predictive Coding (LPC) order and window to use. 8Z-Audio refuses to guess. Instead, it scans the signal first—analyzing difficulty, tonality, and transient structure—and then allocates a computational budget per frame to exhaustively search for the mathematical truth.

2. The AI Reasoning Engine

How does a project evolve from a blank prompt to a world-class audio codec in exactly four days? By changing how AI is utilized. 8Z was built using the B/C/S/X Self-Dialogue Technique.

The Dream Team Voices

  • B (Bojan): Refuses constraints, follows intuition.
  • C (Claude): Formalizes, connects to theory.
  • S (Skeptic): Challenges everything, demands byte-level evidence.
  • X (Expert): Deep signal processing knowledge.

The 4-Move Reasoning Pattern

1. Refuse the standard assumption.
2. Decompose the problem into primitives.
3. Generalize the solution.
4. Let the system decide (MDL Battle).

The breakthrough for the Chebyshev harmonic predictor didn't come from a prompt. It happened during a simulated multi-voice debate while Bojan was taking a shower. The Skeptic (S) attacked the Expert's (X) vague ideas, forcing the Expert to reach for specific physics to defend the concept.

3. Cross-Domain Transfer (The Secret Weapon)

Every domain is the same problem wearing different clothes. The architecture that powers 8Z-Audio wasn't invented for audio.

The Dynamic Compression Controller (DCC) was originally built for a Traveling Salesperson Problem (TSP) solver, then ported to a FASTA DNA sequence encoder. The concept of a preemptive scanner was lifted directly from the 8Z DNA pipeline. The MDL frame selection came from 8Z Image compression. By treating audio simply as a 1D sequence governed by physics, 8Z-Audio inherited years of optimization from entirely different scientific fields overnight.

4. Architectural Timeline

A staggering pace of iteration. Seven major architectural leaps in under 100 hours of development.

Ver. & Era Exec. Arch. Leap Features
v1.0"First Light" Per-Frame General-Purpose Backends
Relied on external algorithms (LZMA, zlib).
Basic LPC (1-32), RAW, DELTA. Decorrelation modes.
v1.1 - 1.2"Rice Engine" Threaded Native Entropy Coding
FLAC-style partitioned Rice coding natively.
5-bit escape, exhaustive LPC search, bit-depth warmup.
v1.3.1"Unleashed" Threaded Fault Tolerance
Instant checkpointing to survive batch crashes.
Multi-windowing (Tukey/Hann/Blackman), k-search.
v1.4 - 1.5"DCC Era" Sequential Dynamic Codec Control
AI learning patterns, but forced slow sequential execution.
DCCSMeter, CodecLearner, Blocksize 16384.
v1.6.1"Two-Pass" Decoupled Scanner-Guided Architecture
Fast scan allocates budgets, packer runs parallel.
Adaptive blocksize, 0xFFFE WAV support.
v1.7H"The Hybrids" Decoupled Forensic Heuristics
Synthesis of Claude, Gemini, and GPT logic.
PERIODIC predictor, LPC², L/R/M Stereo Scan, Fair MDL Arena.

5. Benchmarks vs FLAC

The goal was simple: Surpass FLAC at its absolute maximum compression setting (`-12`).

By Day 3 (v1.3.1), 8Z-Audio beat FLAC -8 by 2.1% on Pink Floyd 192kHz audio.
By Day 5 (v1.5), tested against a 15-clip corpus of human recordings and AI-generated music, 8Z-Audio surpassed FLAC -12 on 7 out of 15 clips, including a massive 10.3% smaller file size on Lady Gaga's "Die With A Smile".

Furthermore, testing revealed genre-specific weaknesses in rival codecs like OptimFROG (OFR). Industrial metal (Rammstein) caused a 26% regression in OFR compared to FLAC, providing a clear path for 8Z to differentiate itself by mathematically modeling distortion.

6. The Mathematical Roadmap & The Future

What comes after v1.7H? The GRAD Principle dictates that we add one mathematical model at a time, measure honestly, and let the MDL battle decide.

Upcoming Predictors

  • MATH Predictor: Cellular Automaton detection in residuals.
  • HARMONIC Predictor: Sinusoidal modeling.
  • Chebyshev Distortion: Modeling non-linear guitar saturation.

LLM System Upgrades (v1.8+)

  • SIMD/JIT: Numba acceleration for inner LPC loops.
  • Per-Frame CRC: Streaming safety and corruption recovery.
  • rANS Entropy: Replacing Rice on high-entropy noise floors.