QuarkAudio-HCodec: A Unified Discrete Audio Tokenizer for High-Fidelity, Multitask Audio Generation
8
9 commits
1 linked in READMEs
updated Feb 4, 2026
π H-Codec: A Unified, Dual-Stream Neural Audio Codec with Adaptive Frame Rate and 48kHz Support
Enabling high-fidelity, efficient, and semantically rich audio tokenization for next-generation LLM-based audio generation.
π Key Highlights:
π Paper: arXiv:2510.26372 | π€ Model: Hugging Face Spaces
This project introduces H-Codec, a unified discrete audio tokenizer that integrates self-supervised learning (SSL) representations into the codec architecture to enable dual-stream (acoustic + semantic) tokenization. Unlike prior work that fuses modalities before quantization (e.g., X-Codec), H-Codec employs separate codebooks for acoustic and semantic streams, allowing independent optimization and better reconstruction quality.
We extend the original H-Codec (aka H-Codec-1.0) in UniTok-Audio (Liu et al., 2025) into two advanced variants:
| Version | Key Feature | Sampling Rate | Frame Rate |
|---|---|---|---|
| H-Codec-1.0 | Dual-stream quantization | 16 kHz | Fixed |
| H-Codec-1.5 | Dynamic frame rate adaptation | 16 kHz | Adaptive |
| H-Codec-2.0 | Full-bandwidth 48kHz support | 48 kHz | Fixed |
These improvements significantly enhance audio fidelity, temporal efficiency, and applicability across speech, music, and general audio.
π§ Architecture Core Components:
π‘ H-Codec is designed as a foundational module for LLM-based audio generation, seamlessly integrating with autoregressive language models for end-to-end training and inference.
git clone https://github.com/alibaba/unified-audio.git
cd QuarkAudio-HCodec
conda create -n unise python=3.10
conda activate unise
pip install -r requirements.txt
#!/bin/bash
python audio_tokenizer.py
9 commits
QuarkAudio-HCodec: A Unified Discrete Audio Tokenizer for High-Fidelity, Multitask Audio Generation
8
9 commits
1 linked in READMEs
updated Feb 4, 2026
π H-Codec: A Unified, Dual-Stream Neural Audio Codec with Adaptive Frame Rate and 48kHz Support
Enabling high-fidelity, efficient, and semantically rich audio tokenization for next-generation LLM-based audio generation.
π Key Highlights:
π Paper: arXiv:2510.26372 | π€ Model: Hugging Face Spaces
This project introduces H-Codec, a unified discrete audio tokenizer that integrates self-supervised learning (SSL) representations into the codec architecture to enable dual-stream (acoustic + semantic) tokenization. Unlike prior work that fuses modalities before quantization (e.g., X-Codec), H-Codec employs separate codebooks for acoustic and semantic streams, allowing independent optimization and better reconstruction quality.
We extend the original H-Codec (aka H-Codec-1.0) in UniTok-Audio (Liu et al., 2025) into two advanced variants:
| Version | Key Feature | Sampling Rate | Frame Rate |
|---|---|---|---|
| H-Codec-1.0 | Dual-stream quantization | 16 kHz | Fixed |
| H-Codec-1.5 | Dynamic frame rate adaptation | 16 kHz | Adaptive |
| H-Codec-2.0 | Full-bandwidth 48kHz support | 48 kHz | Fixed |
These improvements significantly enhance audio fidelity, temporal efficiency, and applicability across speech, music, and general audio.
π§ Architecture Core Components:
π‘ H-Codec is designed as a foundational module for LLM-based audio generation, seamlessly integrating with autoregressive language models for end-to-end training and inference.
git clone https://github.com/alibaba/unified-audio.git
cd QuarkAudio-HCodec
conda create -n unise python=3.10
conda activate unise
pip install -r requirements.txt
#!/bin/bash
python audio_tokenizer.py
9 commits