README.md

May 10, 2026 · View on GitHub

Symphonia

Crates.io Docs.rs GitHub Actions Status Deps.rs Crates.io MSRV MPL License

Symphonia is a pure Rust audio decoding and media demuxing library supporting AAC, ADPCM, AIFF, ALAC, CAF, FLAC, MKV, MP1, MP2, MP3, MP4, OGG, Vorbis, WAV, and WebM.

Getting Started · Documentation · Examples · Benchmarks


Features

  • Decode support for the most popular audio codecs with support for gapless playback
  • Demux the most common media container formats
  • Read most metadata and tagging formats
  • Automatic format and decoder detection
  • Basic audio primitives for manipulating audio data efficiently
  • 100% safe Rust
  • Minimal dependencies
  • Fast with no compromises in performance!

Additionally, planned features include:

  • Providing a C API for integration into other languages
  • Providing a WASM API for web usage

Roadmap

Support for individual audio codecs and media formats are provided by separate crates. By default, Symphonia only enables support royalty-free open standard codecs and formats, but others may be enabled using feature flags.

Tip

All formats and codecs can be enabled with the all feature flag.

Status

The following status classifications are used to determine the state of development for each format or codec.

StatusMeaning
-In work or not started yet.
GoodMany media streams play. Some streams may panic, error, or produce audible glitches. Some features may not be supported.
GreatMost media streams play. Inaudible glitches may be present. Most common features are supported.
ExcellentAll media streams play. No audible or inaudible glitches. All required features are supported.

A status of Great indicates that major development is complete and that the feature is in a state that would be acceptable for most applications to use.

A status of Excellent is only assigned after the feature passes all compliance tests. If no compliance tests are readily available, then a status of Excellent will be assigned if Symphonia's output matches that of a reference implementation, or ffmpeg, over a large test corpus.

Formats (Demuxers)

FormatStatusGapless*Feature FlagDefaultCrate
AIFFGreatYesaiffNosymphonia-format-riff
CAFGoodNocafNosymphonia-format-caf
ISO/MP4GreatNoisomp4Nosymphonia-format-isomp4
MKV/WebMGoodNomkvYessymphonia-format-mkv
OGGGreatYesoggYessymphonia-format-ogg
WaveExcellentYeswavYessymphonia-format-riff

* Gapless playback requires support from both the demuxer and decoder.

Tip

All formats can be enabled with the all-formats feature flag.

Codecs (Decoders)

CodecStatusGaplessFeature FlagDefaultCrate
AAC-LCGreatNoaacNosymphonia-codec-aac
ADPCMGoodYesadpcmYessymphonia-codec-adpcm
ALACGreatYesalacNosymphonia-codec-alac
HE-AAC (AAC+, aacPlus)--he-aacNosymphonia-codec-aac
HE-AACv2 (eAAC+, aacPlus v2)--he-aac-v2Nosymphonia-codec-aac
FLACExcellentYesflacYessymphonia-bundle-flac
MP1GreatNomp1, mpaNosymphonia-bundle-mp3
MP2GreatNomp2, mpaNosymphonia-bundle-mp3
MP3ExcellentYesmp3, mpaNosymphonia-bundle-mp3
Opus--opusYessymphonia-codec-opus
PCMExcellentYespcmYessymphonia-codec-pcm
VorbisExcellentYesvorbisYessymphonia-codec-vorbis
WavPack--wavpackYessymphonia-codec-wavpack

A symphonia-bundle-* package is a combination of a decoder and a native demuxer.

Tip

All codecs can be enabled with the all-codecs feature flag. Similarly, all MPEG audio codecs can be enabled with the mpa feature flag.

Tags (Readers)

All metadata readers are provided by the symphonia-metadata crate.

For metadata formats that are standalone and not part of the media container, a feature flag may be used to toggle support.

FormatStatusFeature FlagDefault
APEv1GreatapeYes
APEv2GreatapeYes
ID3v1Greatid3v1Yes
ID3v2Greatid3v2Yes
ISO/MP4GreatN/AN/A
RIFFGreatN/AN/A
Vorbis comment (FLAC)PerfectN/AN/A
Vorbis comment (OGG)PerfectN/AN/A

Tip

All metadata formats can be enabled with the all-meta feature flag.

Third-party Demuxers and Decoders

Symphonia is a designed around a modular framework that allows the registration of third-party demuxers and decoders. This table provides a list of crates that implement such components.

Important

This is not an endorsement of the quality, safety, or performance of these implementations. Please exercise your own judgement.

CrateProvides
symphonia-adapter-fdk-aacAAC-LC, HE-AAC, & HE-AACv2 via. libfdk-aac
symphonia-adapter-libopusOpus via. libopus

Quality

In addition to the safety guarantees afforded by Rust, Symphonia aims to:

  • Decode media as correctly as the leading free-and-open-source software decoders
  • Prevent denial-of-service attacks
  • Be fuzz-tested
  • Provide a powerful, consistent, and easy to use API

Performance

Symphonia aims to be comparable to, or faster than, popular open-source C-based implementations. Currently, Symphonia's decoders are generally +/-15% the performance of FFMpeg. However, the exact range will depend strongly on the codec, which features of the codec are being leveraged in the encoding, the Rust compiler version, and the CPU architecture being compiled for.

See the benchmarks for more information.

Optimizations

All SIMD optimizations are enabled by default. SIMD support will pull in the rustfft dependency.

Instruction SetFeature FlagDefault
SSEopt-simd-sseYes
AVXopt-simd-avxYes
Neonopt-simd-neonYes

Tip

All SIMD optimizations can be enabled with the opt-simd feature flag.

Examples

Basic usage examples may be found here.

For a more complete application, see symphonia-play, a simple music player.

Tools

Symphonia provides the following tools for debugging purposes:

  • symphonia-play for probing, decoding, validating, and playing back media streams.
  • symphonia-check for validating Symphonia's decoded output against various decoders.

Minimum Supported Rust Version

The minimum supported Rust version (MSRV) for Symphonia 0.6.x releases is 1.85.

This project considers incrementing the MSRV to be a SemVer breaking change.

Author

The primary author is Philip Deljanov.

Special Thanks

  • Kostya Shishkov (AAC-LC decoder contribution, see symphonia-codec-aac)

License

Symphonia is provided under the MPL v2.0 license. Please refer to the LICENSE file for more details.

Contributing

Symphonia is a free and open-source project that welcomes contributions! To get started, please read our Contribution Guidelines.