Question

I am trying to add/replace album art of MP3 files. Is there an Objective-C framework that will allow me to do this? If not, what the best way to do this? I don't mind using C or C++ but it's better if it's in Objective-C. Thanks!

Update: I found an audio framework called SFBAudioEngine which can edit metadata of several audio formats but when I compile the sample project in it, I get 2094 errors.

Was it helpful?

Solution

Since Objective-C is a strict superset of C itself, I would suggest compiling a library that handles ID3 tags (id3lib or libid3tag come to mind) and use their functions directly or build a class around what they provide. Good luck!

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top