19 releases
0.2.8 | Jan 25, 2025 |
---|---|
0.2.7 | May 24, 2024 |
0.2.5 | Oct 7, 2021 |
0.2.4 | Aug 15, 2020 |
0.1.3 | Jun 6, 2015 |
#28 in Audio
3,779 downloads per month
Used in 31 crates
(15 directly)
64KB
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.8"
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
~100–285KB