From taglib-devel Fri Aug 09 17:37:42 2019 From: Scott Wheeler Date: Fri, 09 Aug 2019 17:37:42 +0000 To: taglib-devel Subject: Re: Constructing an ID3v2::Frame without a file Message-Id: X-MARC-Message: https://marc.info/?l=taglib-devel&m=156537228027230 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