Click here to Skip to main content
15,878,748 members
Articles / Programming Languages / C#
Article

Controlling iTunes through COM

Rate me:
Please Sign up or sign in to vote.
4.11/5 (13 votes)
14 Jul 20043 min read 175.8K   2.6K   42   37
An example of how to utilize COM in C# through a system tray application that controls iTunes

Introduction

Apple's iTunes is a powerful audio library manager and player now available for both Windows and Mac. Its feature set is endless and expanding, and, thankfully, through COM, third-party developers can access a good portion of this, even through the .NET Framework and its interop capabilities.

I have built a simple demo application to demonstrate a variety of the features that are available using the iTunes COM interface. This application, by no means, represents the full power of the interface, but is designed to show the different capabilities. Apple's developer web site has an SDK for the complete COM interface.

My application is a system tray utility for controlling iTunes easily and displaying the currently play track. It calls methods, changes properties, and receives events all through COM. It implements the basic functionality of playing, pausing, stopping and changing the currently playing track as well as popping up a window when the track changes.

Instantiating the iTunes Application

In order to access the features that iTunes has to offer, you must first add a reference to the iTunes COM Library to your project. Right click on your project in the Solution Explorer, choose "Add Reference...". Select the COM tab and find the "iTunes 1.1 Type Library", click "Select" and finally click "OK". You will now see "iTunesLib" under your References list for that project.

Next, in any files that you want to communicate with iTunes in, add the following directive:

C#
using iTunesLib;

In order to control iTunes you must create a new instance if the controlling interface. This interface allows your program to communicate with and control (and be controlled by) and already open instance of iTunes.

C#
private myiTunes = new iTunesAppClass();

Using this myiTunes member, you can access functions like Play(), Pause(), Stop(), and Quit(). If for some reason iTunes is closed and your application continues to try and communicate with it, a COMException will be thrown.

Receiving Events from iTunes

The myiTunes member also allows access to certain events like when a new track starts playing, when the current one stops, etc. To specify a new event handler for one of these events, iTunesLib uses the same delegate model that all other events in C# use:

C#
// Add Event Handler
myiTunes.OnPlayerPlayEvent += new _IiTunesEvents_OnPlayerPlayEventEventHandler(
    myiTunes_OnPlayerPlayEvent);

// Event Handler
protected void myiTunes_OnPlayerPlayEvent(object iTrack)
{
...
}

The iTrack parameter provides information about the currently playing track, but in order to get at this information, we must first cast the iTrack into an IITTrack variable.

C#
string myArtist, myName;

IITTrack myTrack = (IITTrack) iTrack;
myArtist = myTrack.Artist;
myName = myTrack.Name;

This is by no means all of the information available in the IITTrack interface. More information is available in Apple's documentation.

Conclusion

I hope that I have merely whetted you appetite in terms of what can be done with controlling Apple's powerful audio application, iTunes. The possibilities are endless: you can batch convert your media to a different format, organize and manage playlists, and batch rename tracks, among other things. Consult Apple's SDK for more information. It is vague in terms of examples, however it contains information about all of the interfaces, what they do, and what members and functions are accessible through each.

Furthermore, I hope I have introduced you to the idea of COM (component object module) and its potentials within your own work. Whether utilizing other COM components functionality or creating your own COM components, I think you will find that it can be endlessly useful, under the right circumstances.

System Requirements

This software is known to work with the following configuration:

  • Microsoft Windows XP SP1 or later
  • Microsoft .NET Framework 1.1
  • Apple iTunes 4.6

The software may possibly work under different configurations, but this has not be verified to date.

Known Issues

  • AnimateWindow WinAPI function does not work properly for fading in the popup display.
  • Popup window timer does not reset when track is changed while popup is showing.

History

  • 07/14/2004 - Article Released

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionHow do you set Last Skipped Date and Skip Counter? I used .NextTrack() and it doesn't do anything... Pin
Member 113516295-Aug-20 8:05
Member 113516295-Aug-20 8:05 
Questionquestion about itunesTray program to Adam Durity Pin
Member 1368429328-Feb-18 7:09
Member 1368429328-Feb-18 7:09 
QuestionControl speed Pin
Vuvirt27-Nov-17 8:36
Vuvirt27-Nov-17 8:36 
QuestionItunes backup control Pin
Beniwal0125-Sep-13 0:14
Beniwal0125-Sep-13 0:14 
QuestionHow Do I Search The Itune Library? Pin
MadMan-2972922-Jul-09 19:55
MadMan-2972922-Jul-09 19:55 
Generalstreaming track from iPod to PC Pin
Halid Niyaz23-Aug-06 5:29
Halid Niyaz23-Aug-06 5:29 
GeneralPopup window timer does not reset when track is changed while popup is showing. Pin
zelig26-May-06 6:49
zelig26-May-06 6:49 
It seems that the System.Windows.Forms.Timer doesn't work correctly if the form's not visible, but using a System.Timers timer fixes this issue....
GeneralEvent handling Pin
dark_omen23-Mar-06 13:43
dark_omen23-Mar-06 13:43 
AnswerRe: Event handling Pin
ndphuong16-Sep-06 21:08
ndphuong16-Sep-06 21:08 
AnswerRe: Event handling Pin
Chiser9910-Nov-06 12:02
Chiser9910-Nov-06 12:02 
GeneralUsing with .NET 2.0 Framework Pin
Shawn McCartt23-Jan-06 14:31
Shawn McCartt23-Jan-06 14:31 
GeneralNot working Pin
Ludo de la Pena10-Mar-06 8:15
Ludo de la Pena10-Mar-06 8:15 
GeneralRe: Not working ? Pin
Ludo de la Pena10-Mar-06 8:44
Ludo de la Pena10-Mar-06 8:44 
GeneralManaging multiple invocations of the COM interop Pin
Drew Noakes21-Jan-06 10:58
Drew Noakes21-Jan-06 10:58 
GeneralRe: Managing multiple invocations of the COM interop Pin
Member 235878828-Aug-08 3:24
Member 235878828-Aug-08 3:24 
GeneralRe: Managing multiple invocations of the COM interop Pin
Drew Noakes28-Aug-08 5:08
Drew Noakes28-Aug-08 5:08 
QuestionHide iTunes Pin
tayspen11-Nov-05 9:35
tayspen11-Nov-05 9:35 
QuestionMusic Folder Pin
TraPpeur29-Sep-05 8:49
TraPpeur29-Sep-05 8:49 
AnswerRe: Music Folder Pin
Adam Durity13-Oct-05 17:53
Adam Durity13-Oct-05 17:53 
GeneralRe: Music Folder Pin
TraPpeur14-Oct-05 0:37
TraPpeur14-Oct-05 0:37 
GeneralRe: Music Folder Pin
Erikpro8-May-07 22:43
Erikpro8-May-07 22:43 
GeneralAdding Tracks to iTunes Pin
sindhoor5-Jun-05 4:25
sindhoor5-Jun-05 4:25 
GeneralItunes COM Events Pin
zx2c425-Mar-05 14:12
zx2c425-Mar-05 14:12 
AnswerRe: Itunes COM Events Pin
pVALIUM2-Nov-07 0:37
pVALIUM2-Nov-07 0:37 
GeneralRe: Itunes COM Events Pin
pardillojuegos2-Jul-12 4:35
pardillojuegos2-Jul-12 4:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.