18 releases

0.2.7 May 24, 2024
0.2.5 Oct 7, 2021
0.2.4 Aug 15, 2020
0.2.3 May 20, 2020
0.1.3 Jun 6, 2015

#22 in Audio

Download history 506/week @ 2024-05-17 817/week @ 2024-05-24 409/week @ 2024-05-31 369/week @ 2024-06-07 668/week @ 2024-06-14 408/week @ 2024-06-21 354/week @ 2024-06-28 474/week @ 2024-07-05 588/week @ 2024-07-12 458/week @ 2024-07-19 605/week @ 2024-07-26 629/week @ 2024-08-02 845/week @ 2024-08-09 780/week @ 2024-08-16 5192/week @ 2024-08-23 784/week @ 2024-08-30

7,681 downloads per month
Used in 27 crates (13 directly)

MIT license

62KB
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.7"
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

~135KB