ID3 tag parsing functionality
A ID3 library for node, using pure Javascript.
JavaScript library for writing ID3 tag to MP3 files in browsers and Node.js
A pure JavaScript id3 tag parser.
Media Tags Reader (ID3, MP4)
Pure JavaScript ID3v2 Tag writer and reader
A modern ID3 parser written completely in JavaScript, making use of typed arrays and the HTML5 File API
ARIB subtitle copy as id3 timed-metadata
Map of ID3 "Genre" field names to byte number
ID3 Tag Reader/Writer
An ID3-only MPEG2TS segment generator library.
Insanely quick ID3 reading & writing for JavaScript powered by WebAssembly.
Insanely quick ID3 reading & writing for JavaScript powered by WebAssembly.
wasm bindings for libav to extract audio (e.g. ID3) tags and duration
Media Tags Reader (ID3, MP4)
An NPM package to facilitate downloading music from YouTube, including automatic retrieval of ID3 tags and album art via the iTunes public API.
Patch ID3 tags from file's name and directories and/or rename MP3 files from ID3 tags, acting as a front-end for the 'id3v2' Linux command.
Pure JavaScript ID3 Tag writer/reader
A modern ID3 parser written completely in JavaScript, making use of typed arrays and the HTML5 File API
id3-algorithm implemented in js
Sync rekordbox playlists to Spotify with multi-stage matching (ID3 ISRC + normalized title/artist + fuzzy)
A fast & easy-to-use library for reading ID3.
ID3-Tag library for NodeJS promise based
mp3 ID3 reader for Node.js
A library for reading and writing ID3 metadata
View and modify IDv3 tags
A tool to embed images into mp3 files (forked, updated and extended api)
A tool to embed images into mp3 files
Read and write ID3 tags in a machine-readable way
An id3 reading plugin for Nushell
Pure-Rust ID3v1 / ID3v2 (2.2 / 2.3 / 2.4) tag parser for oxideav
A beautiful tree 🌳 with convenient, efficient, parallelizable growth, mutation and traversal features.
Generates human-readable, prefixed, and globally unique identifiers (based on the TypeID spec) for Rust. Improves clarity, type-safety, debugging, and identifier management in your applications.
A Rust library for reading metadata from various media file formats.
Tag and metadata parsers for revelo (ID3, APE, Vorbis comments, XMP, ...).
Command line ID3 tag editor
ID3 is a native ruby library for reading and writing ID3 tag versions 1.0, 1.1, and 2.2.x, 2,3.x, 2,4.x
Read and write ID3 metadata from/to MP3 files
ID3 tags editor for the command line written in Ruby.
Fix id3 tag encodings generated by lame in K3b
Native Ruby ID3 tag reader that aims for 100% coverage of ID3v2.x and ID3v1.x standards
ID3-based implementation of the M.L. Decision Tree algorithm
A set of tools to manage .mp3 files, starting with reading ID3 tags.
= id3lib-ruby id3lib-ruby provides a Ruby interface to the id3lib C++ library for easily editing ID3 tags (v1 and v2) of MP3 audio files. The class documentation starts at ID3Lib::Tag. == Features * Read and write ID3v1 and ID3v2 tags * Simple interface for adding, changing and removing frames * Quick access to common text frames like title and performer * Custom data frames like attached picture (APIC) * Pretty complete coverage of id3lib's features * UTF-16 support (warning: id3lib writes broken UTF-16 frames) * Windows binary gem available The CHANGES file contains a list of changes between versions. == Installation See INSTALL. == Online Information The home of id3lib-ruby is http://id3lib-ruby.rubyforge.org == Usage require 'rubygems' require 'id3lib' # Load a tag from a file tag = ID3Lib::Tag.new('talk.mp3') # Get and set text frames with convenience methods tag.title #=> "Talk" tag.album = 'X&Y' tag.track = '5/13' # Tag is a subclass of Array and each frame is a Hash tag[0] #=> { :id => :TPE1, :textenc => 0, :text => "Coldplay" } # Get the number of frames tag.length #=> 7 # Remove all comment frames tag.delete_if{ |frame| frame[:id] == :COMM } # Get info about APIC frame to see which fields are allowed ID3Lib::Info.frame(:APIC) #=> [ 2, :APIC, "Attached picture", #=> [:textenc, :mimetype, :picturetype, :description, :data] ] # Add an attached picture frame cover = { :id => :APIC, :mimetype => 'image/jpeg', :picturetype => 3, :description => 'A pretty picture', :textenc => 0, :data => File.read('cover.jpg') } tag << cover # Last but not least, apply changes tag.update! == Licence This library has Ruby's licence: http://www.ruby-lang.org/en/LICENSE.txt == Author Robin Stocker <robinstocker at rubyforge.org>
Mp3 id3 tag cleaner
ID3 decision trees for machine learning in Ruby
Automated ID3 tagging for iTunes on a Mac, based on AppleScript. Alter for your needs. Features intelligent genre tagging.
ID3-based implementation of the M.L. Decision Tree algorithm
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.