On 09/08/2019 19:14, Fred Gleason wrote: > Is there a comparable technque for parsing entire ID3v2 tags? Not quite.  You have to parse the header to know how big the tag is, so if you want to do that you have to subclass ID3v2::Tag, handle parsing the header yourself (by calling ID3v2::Header::setData(...)), and then call ID3v2::Tag::parse(...) (protected). -Scott