18 releases

new 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

#43 in Audio

Download history 212/week @ 2024-02-01 259/week @ 2024-02-08 320/week @ 2024-02-15 326/week @ 2024-02-22 365/week @ 2024-02-29 503/week @ 2024-03-07 532/week @ 2024-03-14 367/week @ 2024-03-21 431/week @ 2024-03-28 429/week @ 2024-04-04 587/week @ 2024-04-11 436/week @ 2024-04-18 425/week @ 2024-04-25 558/week @ 2024-05-02 473/week @ 2024-05-09 509/week @ 2024-05-16

2,034 downloads per month
Used in 22 crates (11 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