Stability AI released Stable Audio 3 on May 20, 2026 — a family of open-weight audio generation models that covers music composition, sound effects, and audio editing in a single unified architecture. The release is positioned explicitly for “artistic experimentation,” trained entirely on fully licensed data, and ships with weights for the small and medium variants available for download today.

The core technical claim is efficiency without quality sacrifice: the medium model generates audio in under two seconds on an H200 GPU and in a few seconds on a MacBook Pro M4. The small models run on CPU only, requiring no GPU at all. The large model (2.7B parameters) is API-only and not yet publicly available for self-hosting.

The release is notable for two reasons beyond the models themselves. First, the training data transparency: Stability AI published the full attribution for 1,278,902 audio recordings — a direct response to ongoing litigation and licensing disputes that have dogged audio AI. Second, the engineering choices — variable-length generation, LoRA fine-tuning, inpainting, and a modular model family — reflect a tool designed for production integration rather than a demo.

For context on Stability AI’s image generation lineage, see our Stable Diffusion review.


The Launch

Stability AI published Stable Audio 3 on May 20, 2026, with weights immediately available on Hugging Face for the small and medium variants. The accompanying research paper (arXiv:2605.17991) was released simultaneously. A GitHub repository with training and inference code shipped alongside the weights.

The release continues a progression:

  • Stable Audio 2.5 (September 2025): enterprise-focused audio model, proprietary
  • Stable Audio 3 (May 2026): open-weight family, consumer-grade hardware support, fully licensed training data

The timing places the release one day after Google I/O 2026, where audio-in-video received significant attention through Veo 3. Stable Audio 3 is a different category — standalone audio generation, not video-synchronized — but the audio AI space is clearly accelerating.


Model Family

Stable Audio 3 ships as four variants:

Model Parameters Hardware Max Duration
Small-Music 433M CPU-only 120 seconds
Small-SFX 433M CPU-only 120 seconds
Medium 1.4B GPU (CUDA) 380 seconds
Large 2.7B API only 380 seconds

The small variants are split by use case: Small-Music is optimized for melodic and harmonic generation; Small-SFX is optimized for sound design. Both run without a GPU, which is a meaningful accessibility step — teams that cannot provision CUDA infrastructure can still integrate audio generation into pipelines.

The medium model handles both music and SFX at higher quality, requires CUDA (Flash Attention 2 required), and is the practical target for developers with standard GPU access. The large model remains API-only for now; Stability AI has not announced a timeline for weight release.


Architecture

The technical foundation is a latent diffusion model on a transformer architecture. Key design choices:

Semantic-acoustic autoencoder: Stable Audio 3 introduces a novel autoencoder that projects audio into a compact latent space capturing both semantic content (style, genre, instrumentation) and acoustic detail (timbre, texture). This is distinct from earlier approaches that treated these separately.

Adversarial post-training: The models went through adversarial post-training after standard diffusion training. This serves two purposes simultaneously: it accelerates inference (fewer diffusion steps needed) and improves perceptual quality. The result is the sub-2-second generation time on H200.

Text conditioning via T5Gemma: Text prompts are encoded using google/t5gemma-b-b-ul2, a pre-trained model from Google. This is the same family of text encoders that Stable Diffusion 3.x uses for image generation — the integration reflects Stability AI’s broader architecture standardization.

Variable-length generation: Rather than always generating fixed-duration audio and trimming it, Stable Audio 3 generates only the latents needed for the requested duration. A 5-second sound effect does not consume the compute budget of a 6-minute song. This has practical significance for workflows mixing short SFX with long-form music.


Capabilities

Music generation

The model accepts natural-language prompts specifying genre, mood, tempo, and instrumentation. The research paper and code examples demonstrate:

  • Genre-specific generation (“House music at 124 BPM with festival energy”)
  • Instrumental composition without vocals
  • Dream-like and experimental ambient generation
  • Structural BPM control

Maximum duration for medium and large: 380 seconds (~6.3 minutes), well above the 2–3 minute caps common in earlier models.

Sound effects

The Small-SFX and Medium variants generate environmental sounds, foley, and abstract audio. This covers the standard game audio and film post-production use cases.

Inpainting and continuation

Stable Audio 3 supports audio inpainting — masking a region of existing audio and regenerating only that segment. This enables targeted edits: replacing a noisy bar in a recording, extending a piece beyond its original length, or patching a section with a different instrument arrangement. Continuation (generating forward from an existing audio clip) is also supported.

LoRA fine-tuning

The release ships with LoRA fine-tuning support for style personalization. LoRA adapters are stackable and adjustable at runtime, enabling blending of multiple trained styles without retraining the base model. This is directly comparable to how image generation workflows use LoRA today — the same tooling philosophy carried to audio.


Training Data

This is the aspect of Stable Audio 3 that most distinguishes it from the broader audio AI field.

The model was trained on 1,278,902 audio recordings, with full attribution published:

Source Count License
AudioSparx 806,284 Licensed (commercial)
Freesound (CC-0) 266,324 Public domain
Freesound (CC-BY) 194,840 Attribution required
Freesound (CC-Sampling+) 11,454 Sampling permitted

Music recordings were screened using PANNs audio tagging to remove copyrighted material that slipped through. The attribution data is published at stability.ai/attributions.

This level of data transparency is not the norm in audio AI. Suno and Udio have both faced litigation over training data claims. Stable Audio 3’s position — built for enterprise use cases, documented training sources, existing partnership agreements with Warner Music Group and Universal Music Group — is a deliberate differentiator for commercial teams that cannot absorb legal exposure.

The Warner Music Group and Universal Music Group partnerships (announced in 2025) are explicitly framed as “responsible AI in music creation” — suggesting the training data relationship may extend beyond the publicly documented sources for future model versions.


Hardware and Performance

Hardware Model Generation time
H200 GPU Medium < 2 seconds
MacBook Pro M4 Medium A few seconds
CPU only Small Supported

The CPU-only path for Small models uses Apple Silicon CoreML and standard CPU inference — not just “technically possible but unusably slow.” Stability AI has invested in TensorRT optimization for CUDA and CoreML export for Apple Silicon, positioning this as a real multi-platform deployment target.

Required dependencies for the Medium model:

  • PyTorch with CUDA 12.6
  • Flash Attention 2
  • stable-audio-3 Python package (installable via uv)

Access and Licensing

Open weights (Small and Medium): Available on Hugging Face under the Stability AI Community License.

Community License terms:

  • Free for personal, research, and non-commercial use
  • Commercial use requires a separate license from stability.ai
  • Includes Gemma Terms of Use for the T5Gemma text encoder component

API (Large model): Available through Stability AI’s API. Pricing not yet published for Stable Audio 3 specifically; Stable Audio 2.5 API pricing was available as a reference point.

The dual structure — open weights for the small/medium tier, API-only for the large tier — follows the same pattern as many frontier model labs. The community license restriction on commercial use without a separate agreement is the main friction point for businesses that want to self-host.


Competitive Position

vs. Suno v5.5

Suno v5.5 (March 2026) is the current consumer music AI market leader by awareness and polish. It supports custom voice models, stem generation, MIDI export, and multitrack editing at the Pro/Premier tier. Suno is a hosted platform — no weights, no self-hosting, no fine-tuning of the base model.

Stable Audio 3’s advantages over Suno:

  • Open weights (self-hosting, air-gapped deployment)
  • LoRA fine-tuning on the base model
  • Inpainting / audio editing (Suno is generate-only)
  • SFX generation (Suno is music-only)
  • Fully licensed training data with published attribution
  • No subscription required for non-commercial use

Suno’s advantages:

  • Higher polished output quality at the consumer level (based on Suno’s market position)
  • Vocal generation (Suno v5.5 has voice capture and custom voices; Stable Audio 3 is instrumental-focused)
  • Integrated platform with UI, history, sharing

vs. Stable Audio 2.5

Stable Audio 2.5 was enterprise-focused and proprietary. Stable Audio 3 is open-weight with broader hardware support. For teams already using 2.5 via API, the migration path to 3 may involve a licensing renegotiation, but the model capability upgrade (variable-length, inpainting, LoRA) is substantial.


Limitations

No vocal generation: Stable Audio 3 generates instrumental music and sound effects. It does not generate singing, lyrics, or voice. Teams that need vocal AI music generation should look at Suno v5.5 or Udio.

Large model is API-only: The highest-capability variant is not yet available for self-hosting. Teams that need the full 2.7B model on their own infrastructure will need to wait.

Community license commercial restriction: Self-hosting for commercial applications requires contacting Stability AI for a separate license agreement. This is a real procurement step that pure open-source models (Apache 2.0) do not require.

Limited community validation: At launch (106 GitHub stars, 7 forks), Stable Audio 3 has minimal community testing compared to established tools. Quality assessments from the broader audio AI community will accumulate over the coming months.

No quality benchmarks published in the abstract: The research paper’s arXiv abstract does not include comparative benchmark numbers against other audio generation models. Community evaluations will fill this gap, but the absence of published head-to-head metrics at launch makes it harder to evaluate quality claims.


Who This Is For

Stable Audio 3 fits best for:

  • Developers building audio pipelines who need local inference, LoRA customization, or inpainting — capabilities that hosted platforms don’t offer
  • Game studios and post-production teams that need SFX generation alongside music, with fine-tuning for style consistency
  • Enterprises with legal exposure to training data claims — the documented licensing is a compliance argument
  • Researchers working on audio diffusion, who benefit from open weights and the published training pipeline
  • MacBook Pro M4 users who want local audio generation without a cloud subscription (Small models, CPU-only)

Less suited for:

  • Consumer music creators who want vocal generation and a polished UI (use Suno v5.5 or Udio instead)
  • Teams that need the best available quality today and cannot wait for community benchmarking to establish Stable Audio 3’s ceiling

Rating: 4/5

Stable Audio 3 is a technically solid open-weight release that fills a real gap: self-hostable, fine-tunable audio generation with documented training data. The variable-length architecture, inpainting support, CPU-only small models, and LoRA fine-tuning make it genuinely useful for production pipelines rather than just demo-worthy. The fully licensed training data is a meaningful compliance differentiator.

The -1 from a perfect score reflects three genuine limitations: the large model is API-only at launch, the community license requires a separate commercial agreement for self-hosting at scale, and there are no published head-to-head quality benchmarks yet. These are solvable over time — particularly as community testing accumulates — but they are real constraints at the May 2026 release date.

For teams that need self-hosted audio generation with fine-tuning capability and clean training data provenance, Stable Audio 3 is the strongest option available.