| Crates.io | moosicbox_metaflac |
| lib.rs | moosicbox_metaflac |
| version | 0.1.0 |
| created_at | 2024-10-03 22:20:48.242119+00 |
| updated_at | 2024-10-03 22:20:48.242119+00 |
| description | A library for reading and writing FLAC metadata, modified for MoosicBox. |
| homepage | https://github.com/MoosicBox/rust-metaflac |
| repository | https://github.com/MoosicBox/rust-metaflac |
| max_upload_size | |
| id | 1395768 |
| size | 66,451 |
A library for reading and writing FLAC metadata, modified for MoosicBox.
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();
}