metaflac

Crates.iometaflac
lib.rsmetaflac
version0.2.7
sourcesrc
created_at2015-04-13 01:42:43.554435
updated_at2024-05-24 21:50:37.72154
descriptionA library for reading and writing FLAC metadata.
homepagehttps://github.com/jameshurst/rust-metaflac
repositoryhttps://github.com/jameshurst/rust-metaflac
max_upload_size
id1855
size64,052
James Hurst (jameshurst)

documentation

https://jameshurst.github.io/rust-metaflac

README

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();
}
Commit count: 108

cargo fmt