Audio AI gets less hype than text or vision, but it already powers voice UX, content creation, and accessibility. Three lines: ASR, TTS, music generation.

Three Product Lines

ASR:     audio → model → text       Whisper, FunASR
TTS:     text → model → speech      OpenAI TTS, ElevenLabs, ChatTTS
Music:   prompt → model → song      Suno, Udio, Stable Audio

Speech Recognition (ASR)

Whisper (OpenAI, 2022)

De facto open-source ASR standard:

- 99 languages
- strong English WER (< ~5%)
- runs locally
- speech → English translation mode

Sizes:
  tiny   (39M)   real-time / mobile
  base   (74M)   balanced
  small  (244M)  daily driver
  medium (769M)  higher accuracy
  large  (1.5B)  best quality

Real Deployments

ScenarioStackOutcome
Meeting notesWhisper large + LLM summary1h meeting → notes in ~5 min
Video captionsWhisper + alignmentstandard for creators
Call center QAFunASR (Chinese-optimized)QA + sentiment
Live dictationWhisper streaming / Deepgramkeyboard replacement

Chinese ASR Picks

English-heavy → Whisper (free, good enough)
Chinese-heavy → FunASR / Paraformer (lower Chinese WER)
Realtime API  → Deepgram / AssemblyAI
Privacy       → local Whisper medium + GPU

Text-to-Speech (TTS)

Evolution

WaveNet → Tacotron → VITS → ChatTTS → OpenAI TTS → ElevenLabs

2026 Comparison

ProductNaturalnessVoice cloneChineseLatencyPricing
OpenAI TTS⭐⭐⭐⭐nofairlow$15/1M chars
ElevenLabs⭐⭐⭐⭐⭐yes (~3s sample)goodmediumfrom $5/mo
ChatTTS⭐⭐⭐⭐nonativelowopen source
Fish Speech⭐⭐⭐⭐yesnativelowopen source
Azure TTS⭐⭐⭐limitedyeslowusage-based

Cases

  • NotebookLM: docs → two-host podcast-style audio
  • Audiobooks: clone narrator voice, batch chapters
  • Voice support: ASR + LLM + TTS loop
  • Accessibility: enhanced screen reader experiences

Music Generation

2024–2025 breakout:

Suno and Udio

Input: "Chinese folk song about the stars, female vocal, acoustic guitar"
Output: full 2–4 minute track (lyrics + vocals + instrumentation)
Suno v4Udio
Qualitynear pro demoslightly higher fidelity
Chinesegoodweaker
Lengthup to ~4 minup to ~2 min
Controltags + descriptiondescription + reference audio
Free tier~50 songs/mo~10 songs/mo

Simplified Architecture

text → text encoder → conditioning
random noise → diffusion/transformer → waveform (or MIDI → render)

Like image diffusion, but in time. Hard parts: long structure, vocal/instrument balance, lyric–melody alignment.

Where It Fits

✅ demos, ideation, game/video beds, ad jingles (prototype)
❌ not pro mastering replacement
❌ training-data copyright still unsettled

Combined Pipelines

Voice assistant:
  speech → Whisper → text → LLM → text → TTS → audio

AI podcast:
  document → LLM script → dual-voice TTS → episode
  (NotebookLM, iFlytek-style products)

OpenAI Realtime API

End-to-end spoken dialogue—no ASR→LLM→TTS chain. GPT-4o voice mode uses this (~300ms latency).

Engineering Picks

ASR     → local Whisper (privacy) or Deepgram (realtime)
TTS     → ElevenLabs (EN), ChatTTS/Fish Speech (ZH)
Music   → Suno (fast ideas), Stable Audio (open/control)
Voice UX → Realtime API or custom ASR+LLM+TTS

References

Summary

Audio AI: ASR is mature (Whisper everywhere), TTS is product-ready, music gen is exploding (Suno for demos). Combined, you can ship full voice products.