18 releases
0.2.7 | May 24, 2024 |
---|---|
0.2.5 | Oct 7, 2021 |
0.2.4 | Aug 15, 2020 |
0.2.3 | May 20, 2020 |
0.1.3 | Jun 6, 2015 |
2,809 downloads per month
Used in 28 crates
(14 directly)
62KB
1.5K
SLoC
rust-metaflac
A library for reading and writing FLAC metadata.
Usage
Add the dependency to your Cargo.toml
:
[dependencies]
metaflac = "0.2.7"
use metaflac::Tag;
fn main() {
let tag = Tag::read_from_path("music.flac").unwrap();
// Some things modifying the tag
tag.save().unwrap();
}
lib.rs
:
A library to read and write FLAC metadata tags.
Dependencies
~135KB