Skip to content

Instantly share code, notes, and snippets.

View sgastudio's full-sized avatar

Penguin sgastudio

View GitHub Profile
@sgastudio
sgastudio / id3.lua
Created May 26, 2022 09:24 — forked from mkottman/id3.lua
An ID3 tag reader implemented in pure Lua. Supports ID3v1 tags and a subset of ID3v2 tags.
--- A simple module to read ID3 tags from MP3 files.
-- Supports ID3v1 tags and a (meaningful) subset of ID3v2 tags.
-- @class module
-- @name id3
-- @author Michal Kottman
-- @copyright 2011, released under MIT license
local id3 = {}
local function textFrame(name)