All Projects → jameshurst → Rust Metaflac

jameshurst / Rust Metaflac

Licence: mit
A rust library for reading and writing FLAC metadata.

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to Rust Metaflac

Music Metadata Browser
Browser version of music-metadata parser Supporting a wide range of audio and tag formats.
Stars: ✭ 105 (+156.1%)
Mutual labels:  metadata, flac
audio-metadata
A library for reading and, in the future, writing audio metadata. https://audio-metadata.readthedocs.io/
Stars: ✭ 41 (+0%)
Mutual labels:  metadata, flac
Atldotnet
Fully managed, portable and easy-to-use C# library to read and edit audio data and metadata (tags) from various audio formats, playlists and CUE sheets
Stars: ✭ 180 (+339.02%)
Mutual labels:  metadata, flac
discogstagger
Console based audio-file metadata tagger that uses the Discogs.com API v2 (JSON based). Relies on the Mutagen and discogs-client libraries. Currently supports FLAC and MP3 file types.
Stars: ✭ 65 (+58.54%)
Mutual labels:  metadata, flac
audio-tag-analyzer
Extracts metadata music metadata found in audio files
Stars: ✭ 18 (-56.1%)
Mutual labels:  metadata, flac
Music Metadata
Stream and file based music metadata parser for node. Supporting a wide range of audio and tag formats.
Stars: ✭ 455 (+1009.76%)
Mutual labels:  metadata, flac
Mex Vocabulary
MEX Vocabulary: a lightweight machine learning interchange format
Stars: ✭ 19 (-53.66%)
Mutual labels:  metadata
Skyrim Perk Utility
Add / Reset your Skyrim perks using generated scripts with an easy to use graphical interface! 📝 🎮
Stars: ✭ 21 (-48.78%)
Mutual labels:  metadata
Auto App
Crie um aplicativo com todas as tabelas de um dos seus bancos sem uma linha de código.
Stars: ✭ 18 (-56.1%)
Mutual labels:  metadata
Leaflet.annotate
A Leaflet plugin integrating schema.org to markup items in your geographic web map machine readable.
Stars: ✭ 5 (-87.8%)
Mutual labels:  metadata
Teslatunes
Copy your iTunes library, automatically converting Apple Lossless to flac, to a destination for use with your Tesla Model S
Stars: ✭ 37 (-9.76%)
Mutual labels:  flac
Strawberry
🍓 Strawberry Music Player
Stars: ✭ 972 (+2270.73%)
Mutual labels:  flac
En Data mining
Data Mining Historical Newspaper Metadata (METS/ALTO formats)
Stars: ✭ 14 (-65.85%)
Mutual labels:  metadata
Community
General discussion, cross-repo efforts and common information for projects in the community.
Stars: ✭ 24 (-41.46%)
Mutual labels:  metadata
Touhou Tagger
从 THBWiki 自动填写东方Project CD曲目信息.
Stars: ✭ 29 (-29.27%)
Mutual labels:  metadata
Il2cppinspector
Powerful automated tool for reverse engineering Unity IL2CPP binaries
Stars: ✭ 901 (+2097.56%)
Mutual labels:  metadata
Diskover
File system crawler, disk space usage, file search engine and file system analytics powered by Elasticsearch
Stars: ✭ 977 (+2282.93%)
Mutual labels:  metadata
Exiftool
ExifTool meta information reader/writer
Stars: ✭ 832 (+1929.27%)
Mutual labels:  metadata
Emby.plugins.javscraper
Emby/Jellyfin 的一个日本电影刮削器插件,可以从某些网站抓取影片信息。
Stars: ✭ 864 (+2007.32%)
Mutual labels:  metadata
Esp8266audio
Arduino library to play MOD, WAV, FLAC, MIDI, RTTTL, MP3, and AAC files on I2S DACs or with a software emulated delta-sigma DAC on the ESP8266 and ESP32
Stars: ✭ 972 (+2270.73%)
Mutual labels:  flac

rust-metaflac

Build Status

A library for reading and writing FLAC metadata.

Documentation

Usage

Add the dependency to your Cargo.toml:

[dependencies]
metaflac = "0.2"
extern crate metaflac;

use metaflac::Tag;

fn main() {
	let tag = Tag::read_from_path("music.flac").unwrap();

	// Some things modifying the tag

	tag.save().unwrap();
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].