#flac #metadata #audio-metadata #parser

moosicbox_metaflac

A library for reading and writing FLAC metadata, modified for MoosicBox

1 unstable release

0.1.0 Oct 3, 2024

#797 in Audio

Download history 2633/week @ 2024-10-03 3806/week @ 2024-10-10 3447/week @ 2024-10-17 5992/week @ 2024-10-24 7478/week @ 2024-10-31 6030/week @ 2024-11-07 7938/week @ 2024-11-14 9692/week @ 2024-11-21 9521/week @ 2024-11-28 8235/week @ 2024-12-05 8175/week @ 2024-12-12 5501/week @ 2024-12-19 4587/week @ 2024-12-26 5042/week @ 2025-01-02

24,576 downloads per month
Used in 21 crates (via moosicbox_audiotags)

MIT license

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();
}

lib.rs:

A library to read and write FLAC metadata tags.

Dependencies

~225KB