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

#23 in Audio

Download history 4616/week @ 2024-08-19 1382/week @ 2024-08-26 753/week @ 2024-09-02 600/week @ 2024-09-09 749/week @ 2024-09-16 814/week @ 2024-09-23 595/week @ 2024-09-30 686/week @ 2024-10-07 736/week @ 2024-10-14 536/week @ 2024-10-21 534/week @ 2024-10-28 394/week @ 2024-11-04 412/week @ 2024-11-11 471/week @ 2024-11-18 630/week @ 2024-11-25 591/week @ 2024-12-02

2,141 downloads per month
Used in 30 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