metaflac

A library for reading and writing FLAC metadata

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
Download history 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 818/week @ 2024-08-30 671/week @ 2024-09-06 608/week @ 2024-09-13 824/week @ 2024-09-20 637/week @ 2024-09-27

2,809 downloads per month
Used in 28 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

~135KB