No description
Find a file
ely-uf 8403b719d4 Make SkipDuration aware of potential change in audio parameters.
The `rodio` documentation states:
> The samples rate and number of channels of some sound sources can change
> by itself from time to time.

This commit introduces awareness of such change to the SkipDuration
source.
Now SkipDuration keeps track of `Source::current_frame_len` in order to
timely adjust both the sample rate and number of channels it uses to calculate
the amount of samples to skip.
2020-08-09 00:28:04 +03:00
examples fix crossfade 2018 & cargo fmt 2020-05-02 13:34:11 +01:00
src Make SkipDuration aware of potential change in audio parameters. 2020-08-09 00:28:04 +03:00
tests Remove deadcode + rustfmt 2020-05-02 13:33:57 +01: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
.travis.yml More documentation rework 2017-02-09 14:02:38 +01:00
Cargo.toml Use cpal 0.12 2020-07-10 20:08:12 +01:00
CHANGELOG.md Use cpal 0.12 2020-07-10 20:08:12 +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 some links to the new location 2019-11-16 08:02:42 +01:00

Audio playback library

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.

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.