Crates.io | metaflac |
lib.rs | metaflac |
version | 0.2.7 |
source | src |
created_at | 2015-04-13 01:42:43.554435 |
updated_at | 2024-05-24 21:50:37.72154 |
description | A library for reading and writing FLAC metadata. |
homepage | https://github.com/jameshurst/rust-metaflac |
repository | https://github.com/jameshurst/rust-metaflac |
max_upload_size | |
id | 1855 |
size | 64,052 |
A library for reading and writing FLAC metadata.
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();
}