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

#30 in Audio

Download history 687/week @ 2024-11-21 534/week @ 2024-11-28 692/week @ 2024-12-05 927/week @ 2024-12-12 462/week @ 2024-12-19 519/week @ 2024-12-26 682/week @ 2025-01-02 1064/week @ 2025-01-09 807/week @ 2025-01-16 850/week @ 2025-01-23 967/week @ 2025-01-30 964/week @ 2025-02-06 965/week @ 2025-02-13 779/week @ 2025-02-20 660/week @ 2025-02-27 528/week @ 2025-03-06

3,081 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