Re: [id3lib-devel] ID3v2.3.0
Brought to you by:
t1mpy
From: Thomas <to...@gm...> - 2010-08-20 16:31:42
|
Hi Geoffrey, I already tried taglib. It is able to read all kind of tags, but it generates ID3v2.4.0 tags only. For compatibility reasons I want to generate ID3v2.3.0 tags and avoid ID3v2.4.0 tags. Generating ID3v2.3.0 tag seems to be a very challenging requirement... Greetings Thomas On Fri, Aug 20, 2010 at 6:14 PM, Geoffrey Leach <ge...@hu...> wrote: > id3lib has not been maintained for some time. taglib -- > http://developer.kde.org/~wheeler/taglib.html<http://developer.kde.org/%7Ewheeler/taglib.html>-- is an excellent > alternative. > > On 08/20/2010 12:19:10 AM, Thomas Salm wrote: > > Hi there, > > > > I am using id3lib 3.8.3 to implement an application that tags my MP3 > > files. This is what I am doing: > > > > // create a tag > > ID3_Tag *tag = new ID3_Tag(filename.c_str()); > > ID3_Field *id3_field; > > > > // tag the file > > ID3_Frame *title_frame = new ID3_Frame(ID3FID_TITLE); > > if((id3_field = title_frame->GetField(ID3FN_TEXT))) { > > id3_field->Set(podcast->get_title().c_str()); > > tag->AttachFrame(title_frame); > > } > > ... > > > > // setup rendering parameters > > tag->SetUnsync(true); > > tag->SetExtendedHeader(true); > > tag->SetCompression(false); > > tag->SetPadding(true); > > > > tag->Update(ID3TT_ID3V1 |ID3TT_ID3V2); > > > > Unfortunately, the program generates ID3v1 tags only. I want to > > generate > > ID3v2.3.0 tags. Any suggestions? > > > > Greetings > > Thomas > > > ------------------------------------------------------------------------------ > > This SF.net email is sponsored by > > > > Make an app they can't live without > > Enter the BlackBerry Developer Challenge > > http://p.sf.net/sfu/RIM-dev2dev > > _______________________________________________ > > id3lib-devel mailing list > > id3...@li... > > https://lists.sourceforge.net/lists/listinfo/id3lib-devel > > > > > > |