11

I have mp3 files stored on the iPhone and I my application should to be able to read the ID3 information, i.e length in seconds, artist, etc. Does anyone know how to do this or what library to use in Objective-C?

Your thoughts are much appreciated.

Neeku's user avatar

Neeku

3,6478 gold badges37 silver badges44 bronze badges

asked Aug 6, 2009 at 14:56

TonyNeallon's user avatar

3

19

+75

ID3 information can be read retrieving the kAudioFilePropertyInfoDictionary property of an audio file using the AudioFileGetProperty function of the AudioToolbox framework.

A detailed explanation is available at iphonedevbook.com

edit: Original link is now down. InformIT has some similar sample code, but it's not as complete.

answered Aug 13, 2009 at 0:22

rpetrich's user avatar

3 Comments

Provided link asks for permissions :(

Page is no longer available. I've replaced with a similar, but less complete link.

5

Look into the Media Player framework:

This requires that the MP3 in question is part of the iPod library on the phone.

For example, determining the name of every media file on the phone (including movies, podcasts, etc.):

MPMediaQuery *everything = [[MPMediaQuery alloc] init];

NSArray *itemsFromGenericQuery = [everything items];
for (MPMediaItem *item in itemsFromGenericQuery) {
    NSString *itemTitle = [item valueForProperty:MPMediaItemPropertyTitle];
    // ...
}

It appears that the following properties are available:

  • MPMediaItemPropertyMediaType
  • MPMediaItemPropertyTitle
  • MPMediaItemPropertyAlbumTitle
  • MPMediaItemPropertyArtist
  • MPMediaItemPropertyAlbumArtist
  • MPMediaItemPropertyGenre
  • MPMediaItemPropertyComposer
  • MPMediaItemPropertyPlaybackDuration
  • MPMediaItemPropertyAlbumTrackNumber
  • MPMediaItemPropertyAlbumTrackCount
  • MPMediaItemPropertyDiscNumber
  • MPMediaItemPropertyDiscCount
  • MPMediaItemPropertyArtwork
  • MPMediaItemPropertyLyrics
  • MPMediaItemPropertyIsCompilation

Doing this without going through the media player framework will be somewhat difficult, and will need an external framework.

answered Aug 11, 2009 at 23:06

John Calsbeek's user avatar

John Calsbeek

36.7k8 gold badges98 silver badges101 bronze badges

1 Comment

He cannot use e Media Player because the files are MP3s in his apps documents folder, not music that is part of the the system wide music collection.

3

There are not many ID3 parsing libraries out there that are not GPLed. There is on Objective-C framework that could probably be modified to work on the iPhone when statically linked, but it is LGPL. In order to satisfy the terms of the LGPL with a statically linked binary you have to provide enough of the intermediary components that someone could relink it with their own version of the library, which is difficult (but not impossible) for an iPhone app. Of course since I have not been in a position where I have had to do that I have not actually discussed it with a lawyer, and since I am not one you should not take that as authoritative.

Your best bet if you don't feel like consulting a lawyer is to use a more liberally licensed C library like libID3 and wrap that in some Objective C classes. I would also recommend just directly including the code rather than dealing with all the static library build and link issues, but that is just a personal style thing.

avpaderno's user avatar

avpaderno

30k17 gold badges81 silver badges95 bronze badges

answered Aug 11, 2009 at 8:51

Louis Gerbarg's user avatar

4 Comments

When linking an LGPL library the entire source of your application should be released to adhere to the terms of the LGPL license.

LGPLv2.1 does not require source code to be released, it requires intermediate objects " If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights."

Interesting; I was unaware of that.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.