flac
flac copied to clipboard
A FLAC implementation written in Rust
Add a basic build config so there's some build/test feedback on the state of the code, especially now that travis-ci.org is retired.
```rust extern crate flac; use flac::{ByteStream, Stream}; fn main() { let s = Stream::::from_buffer(b"fLaC\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00H\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\\"); if let Ok(mut stream) = s { let _ = stream.info(); let _ = stream.metadata(); let...
Hi what about a per-frame/per-packet API you can use together with custom, user provided containers like ogg or webm?
Hey there, first of all thanks for providing the library :) Now, I'm currently using my own fork (not yet pushed to GH though) due to the needs to having...
There are quite a lot of incompatibility warnings, but only of 2 distinct types: ``` $ cargo report future-incompatibilities --id 1 --package [email protected] | grep warning: | sort -u >...
The examples did not compile for me using rust `1.87.0` due to `RustcDecodable` not being available anymore. So I took the liberty of replacing `docopt` as the crate for command...