#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

#933 in Audio

Download history 5470/week @ 2024-11-08 9295/week @ 2024-11-15 9784/week @ 2024-11-22 8880/week @ 2024-11-29 7869/week @ 2024-12-06 8324/week @ 2024-12-13 5415/week @ 2024-12-20 4144/week @ 2024-12-27 5582/week @ 2025-01-03 5374/week @ 2025-01-10 7278/week @ 2025-01-17 10921/week @ 2025-01-24 10107/week @ 2025-01-31 10530/week @ 2025-02-07 6366/week @ 2025-02-14

28,739 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