No description
Find a file
Gavyn Riebau b56de697c1 Remove debug_assert which was triggering unnecessary panic
When playing an mp3 on Windows in debug mode, sometimes
self.next_frame() is not empty in SampleRateConverter, leading to a
panic

See issue: #229
2022-02-18 01:19:35 +01:00
.github/workflows Add optional Symphonia backend (#376) 2021-06-29 09:12:28 +02:00
examples Add optional Symphonia backend (#376) 2021-06-29 09:12:28 +02:00
src Remove debug_assert which was triggering unnecessary panic 2022-02-18 01:19:35 +01:00
tests Reduced 32-bit integer test file size. 2021-10-01 04:20:25 +02:00
.gitignore Initial commit 2015-07-22 12:14:11 +02:00
.rustfmt.toml Migrate to edition 2018 2020-05-02 13:33:57 +01:00
Cargo.toml Update symphonia to 0.5 (#412) 2022-01-31 18:01:11 +01:00
CHANGELOG.md Release 0.15.0 (#408) 2022-01-25 01:57:53 +01:00
LICENSE-APACHE Require all new contributions to be MIT/Apache2 (#175) 2018-08-17 13:59:55 +02:00
LICENSE-MIT Require all new contributions to be MIT/Apache2 (#175) 2018-08-17 13:59:55 +02:00
README.md Update README as symphonia can do vorbis now 2022-01-25 04:00:26 +01:00

Audio playback library

Crates.io Version Crates.io Downloads Build Status

Rust playback library.

  • Playback is handled by cpal.
  • MP3 decoding is handled by minimp3.
  • WAV decoding is handled by hound.
  • Vorbis decoding is handled by lewton.
  • Flac decoding is handled by claxon.
  • MP4 and AAC (both disabled by default) are handled by Symphonia.

Alternatively, Symphonia can be used to decode any of the other codecs above. See the docs for more details on backends.

Documentation

The documentation contains an introduction to the library.

License

Licensed under either of

at your option.

License of your contributions

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.