Click here to Skip to main content
15,868,016 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.6K   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

 
GeneralReceiving Events from iTunes Pin
Matt Berube6-Sep-04 8:52
Matt Berube6-Sep-04 8:52 
GeneralRe: Receiving Events from iTunes Pin
zx2c426-Mar-05 6:26
zx2c426-Mar-05 6:26 
AnswerRe: Receiving Events from iTunes Pin
Matt Berube4-Dec-05 5:08
Matt Berube4-Dec-05 5:08 
QuestionRe: Receiving Events from iTunes Pin
Carson Morrow5-Dec-05 10:11
Carson Morrow5-Dec-05 10:11 
AnswerRe: Receiving Events from iTunes Pin
pVALIUM2-Nov-07 0:45
pVALIUM2-Nov-07 0:45 
GeneralMac equivalent Pin
Anonymous24-Aug-04 13:51
Anonymous24-Aug-04 13:51 
GeneralSo... Pin
eshipman23-Aug-04 6:53
eshipman23-Aug-04 6:53 
GeneralRe: So... Pin
Adam Durity24-Aug-04 12:38
Adam Durity24-Aug-04 12:38 
GeneralRe: So... Pin
Anonymous7-Oct-04 4:26
Anonymous7-Oct-04 4:26 
GeneralRe: So... Pin
eshipman7-Oct-04 6:23
eshipman7-Oct-04 6:23 
GeneralRe: So... Pin
Marcel (was anonymous)8-Oct-04 1:56
sussMarcel (was anonymous)8-Oct-04 1:56 
GeneralRe: So...(Hide window using c# Pin
quickdraw690621-Jan-07 13:17
quickdraw690621-Jan-07 13:17 

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.