Question

I am building a Mac OS Application which needs to import an mp3 file into iTunes...

Can't seem to find any framework that would help me achieve this. The only way I can think of doing this is modifying the "iTunes Music Library.xml".

I'm hoping one of you can point me to a better and cleaner solution.

Thank you in advance.

Was it helpful?

Solution

Ok, so after some research on Scripting Bridge, just like Andrew Madsen suggested. Here is the answer to my own question.

This has been implemented and tested...

  1. Add the ScriptingBridge Framework to your Mac OS Project.
  2. Generate the iTunes.h file by writing the following in the terminal.

    sdef /Applications/iTunes.app | sdp -fh --basename iTunes

  3. Import the newly created iTunes.h file into your Mac OS Project and do an #import "iTunes.h" in the class you would like to use the Scripting Bridge in.

  4. Use this code to add a song to iTunes:

    iTunesApplication *iTunes = [SBApplication applicationWithBundleIdentifier:@"com.apple.iTunes"]; iTunesTrack * track = [iTunes add:[NSArray arrayWithObject:[NSURL fileURLWithPath:filePath]] to:playlist];

  5. That is all to it.

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