#audio-metadata #flac #parser #metadata

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

#37 in Audio

Download history 941/week @ 2024-12-10 564/week @ 2024-12-17 499/week @ 2024-12-24 655/week @ 2024-12-31 1036/week @ 2025-01-07 885/week @ 2025-01-14 902/week @ 2025-01-21 691/week @ 2025-01-28 1079/week @ 2025-02-04 1120/week @ 2025-02-11 669/week @ 2025-02-18 765/week @ 2025-02-25 451/week @ 2025-03-04 1120/week @ 2025-03-11 955/week @ 2025-03-18 925/week @ 2025-03-25

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

Dependencies

~110–290KB