#audio-metadata #flac #metadata #parser

metaflac

A library for reading and writing FLAC metadata

19 releases

0.2.8 Jan 25, 2025
0.2.7 May 24, 2024
0.2.5 Oct 7, 2021
0.2.4 Aug 15, 2020
0.1.3 Jun 6, 2015

#35 in Audio

Download history 610/week @ 2024-12-04 933/week @ 2024-12-11 536/week @ 2024-12-18 467/week @ 2024-12-25 687/week @ 2025-01-01 998/week @ 2025-01-08 873/week @ 2025-01-15 932/week @ 2025-01-22 868/week @ 2025-01-29 942/week @ 2025-02-05 1069/week @ 2025-02-12 710/week @ 2025-02-19 726/week @ 2025-02-26 518/week @ 2025-03-05 1129/week @ 2025-03-12 846/week @ 2025-03-19

3,313 downloads per month
Used in 31 crates (15 directly)

MIT license

64KB
1.5K SLoC

rust-metaflac

Crates.io Version docs.rs Crates.io License GitHub Actions Workflow Status

A library for reading and writing FLAC metadata.

Usage

Add the dependency to your Cargo.toml:

[dependencies]
metaflac = "0.2.8"
use 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

~110–300KB