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

#28 in Audio

Download history 550/week @ 2024-10-30 334/week @ 2024-11-06 420/week @ 2024-11-13 609/week @ 2024-11-20 588/week @ 2024-11-27 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 1003/week @ 2025-02-12

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

~100–285KB