moosicbox_metaflac

Crates.iomoosicbox_metaflac
lib.rsmoosicbox_metaflac
version0.1.0
sourcesrc
created_at2024-10-03 22:20:48.242119
updated_at2024-10-03 22:20:48.242119
descriptionA library for reading and writing FLAC metadata, modified for MoosicBox.
homepagehttps://github.com/MoosicBox/rust-metaflac
repositoryhttps://github.com/MoosicBox/rust-metaflac
max_upload_size
id1395768
size66,451
Braden Steffaniak (BSteffaniak)

documentation

https://MoosicBox.github.io/rust-metaflac

README

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();
}
Commit count: 112

cargo fmt