1 unstable release
| 0.1.0 | Oct 3, 2024 |
|---|
#1850 in Audio
8,712 downloads per month
Used in 18 crates
(via moosicbox_audiotags)
65KB
1.5K
SLoC
rust-metaflac
A library for reading and writing FLAC metadata, modified for MoosicBox.
Usage
Add the dependency to your Cargo.toml:
[dependencies]
moosicbox_metaflac = "0.1"
extern crate moosicbox_metaflac;
use moosicbox_metaflac::Tag;
fn main() {
let tag = Tag::read_from_path("music.flac").unwrap();
// Some things modifying the tag
tag.save().unwrap();
}
Dependencies
~240KB