superhawk610
superhawk610

Reputation: 2653

Writing id3 metadata to mp3 file in application bundle

I've asked this question twice before, with no real progress. After trolling countless forum after forum, I've come to ask again. The only progress so far with this is accessing the metadata of an AVURLAsset (using [AVURLAsset commonMetadata]). There are C libraries out there for writing id3 tags (such as id3lib) but none are configured for Cocoa Touch or even Xcode. Any sort of help would be appreciated, even a suggestion of the right direction to go would be greatly appreciated. If you solve the problem, you'll get an honorable mention in my finished app...

Upvotes: 2

Views: 2377

Answers (1)

rjyo
rjyo

Reputation: 226

I just ported idlib3 to iOS and you can use it to modify the ID3 tag. An example project is also included. Check it here https://github.com/rjyo/libid3-ios

Upvotes: 8

Related Questions