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 431/week @ 2024-07-23 697/week @ 2024-07-30 753/week @ 2024-08-06 947/week @ 2024-08-13 4621/week @ 2024-08-20 1397/week @ 2024-08-27 632/week @ 2024-09-03 581/week @ 2024-09-10 793/week @ 2024-09-17 754/week @ 2024-09-24 579/week @ 2024-10-01 775/week @ 2024-10-08 679/week @ 2024-10-15 510/week @ 2024-10-22 534/week @ 2024-10-29 338/week @ 2024-11-05

2,207 downloads per month
Used in 29 crates (14 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

~140KB