문제

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.

도움이 되었습니까?

해결책

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!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top