audrey
audrey copied to clipboard
A crate to simplify reading, writing and converting between a variety of audio formats.
Is anyone planning to implement the write functionality?
Since there hasn't been much movement on https://github.com/RustAudio/mp3. I could make a PR to add mp3 support via https://crates.io/crates/minimp3. Since that is a C wrapper and against the stated goal...
I don't know whether supporting aac/m4a/mp4 is blocked on any patents etc. Just listing it here as a feature request.
@est31 ping! These are humble beginnings, still lots to go. I thought it could be good to upload it sooner rather than later to get your thoughts and feedback on...
Recently, there has been a RCE-able [c implementation](http://scarybeastsecurity.blogspot.com/2016/12/redux-compromising-linux-using-snes.html). With all the rust based SNES emulators around, I'm sure there is one that also has support for the SPC music format?...
Hello everyone, I am currently planning to start an audio player project and wanted to ask what the plans of handling metadata (tags) with this library are? This looks like...
Currently, the `read::Description` provides: - The number of channels via `channel_count()`. - The rate at which the audio is sampled per channel via `sample_rate()`. - The audio `Format` via `format()`...
As mentioned in #8, perhaps the `read::Description` could indicate whether the channels are interleaved or non-interleaved and this could be used by users desiring the most efficient method of reading...
The Quite OK Audio Format "[..] decodes audio 3x faster than Ogg-Vorbis, while offering better quality and compression" - https://qoaformat.org/ There is a reference encoder and decorer available here https://github.com/phoboslab/qoa...
I'm trying to get metadata for audio files and I at least need the duration. Hello, how would I get the duration of an audio file using this library? There...