Symphonia

Crate Info API Docs Rustc Version 1.53.0+

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

Getting Started · Documentation · Examples · Benchmarks


Features

Additionally, planned features include:

Current Support

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.

| Status | Meaning | |-----------|--------------------------------------------------------------------------------------------------------------------------| | Good | Many media streams play. Some streams may panic, error, or produce audible glitches. Some features may not be supported. | | Great | Most media streams play. Inaudible glitches may be present. Most common features are supported. | | Excellent | All 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)

| Format | Status | Gapless* | Feature Flag | Default | Crate | |----------|-----------|----------|--------------|---------|-----------------------------| | ISO/MP4 | Great | No | isomp4 | No | [symphonia-format-isomp4] | | MKV/WebM | Good | No | mkv | Yes | [symphonia-format-mkv] | | OGG | Great | Yes | ogg | Yes | [symphonia-format-ogg] | | Wave | Excellent | Yes | wav | Yes | [symphonia-format-wav] |

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

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

Codecs (Decoders)

| Codec | Status | Gapless | Feature Flag | Default | Crate | |------------------------------|-----------|---------|--------------|---------|----------------------------| | AAC-LC | Great | No | aac | No | [symphonia-codec-aac] | | ADPCM | Good | Yes | adpcm | Yes | [symphonia-codec-adpcm] | | ALAC | Great | Yes | alac | No | [symphonia-codec-alac] | | FLAC | Excellent | Yes | flac | Yes | [symphonia-bundle-flac] | | MP1 | Great | No | mp1, mpa | No | [symphonia-bundle-mp3] | | MP2 | Great | No | mp2, mpa | No | [symphonia-bundle-mp3] | | MP3 | Excellent | Yes | mp3, mpa | No | [symphonia-bundle-mp3] | | PCM | Excellent | Yes | pcm | Yes | [symphonia-codec-pcm] | | Vorbis | Excellent | Yes | vorbis | Yes | [symphonia-codec-vorbis] |

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.

| Format | Status | |-----------------------|-----------| | ID3v1 | Great | | ID3v2 | Great | | ISO/MP4 | Great | | RIFF | Great | | Vorbis comment (FLAC) | Perfect | | Vorbis comment (OGG) | Perfect |

Quality

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

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.

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:

Author

The primary author is Philip Deljanov.

Special Thanks

License

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

Contributing

Symphonia is an open-source project and contributions are very welcome! If you would like to make a large contribution, please raise an issue ahead of time to make sure your efforts fit into the project goals, and that there's no duplication of effort. Please be aware that all contributions must also be licensed under the MPL v2.0 license to be accepted.

When submitting a pull request, be sure you have included yourself in the CONTRIBUTORS file!