objective-cid3-tag

Is there a library in Objective-C to edit id3 tags in mp3 files?


I need to generate test data and would like to do it with Objective-C in Xcode. So far I have not found an id3 tag library for Objective-C that writes data. I have found a few libraries which can read the data.

Any tips on Open Source projects which do this? Should I consider a different programming language?


Solution

  • #import <AudioToolbox/AudioToolbox.h>
    
    AudioFileSetProperty() //  kAudioFilePropertyID3Tag  
    

    have fun!