A simple C ++ tag library for OGG is needed

I am looking for a C ++ library that can tag ogg files easily with a simple function like

write_ogg_tag("file.ogg", tag_data); // where tag_data contains artist, album ...

Is there a solution?

Also, some solutions apply to MP3, FLAC, etc.? (ogg is enough, I just ask because I'm curious)

+3
source share
1 answer

I don't think anything is better or simpler than TagLib . This applies to all popular formats. Read more about the API here .

An alternative and much more attractive way is to use basic components such as libogg, and use an API that is specific to the low-level format, but that doesn't look like what you are looking for.

+1
source

All Articles