Tagged Questions

7
votes
2answers
6k views

Where is iTunes SDK/API documentation?

I downloaded a zipped archive from Apple that consists of a C++ header file and source. Included in this was a help file. For some reason this help file opens but I cannot read the content. Is there ...
6
votes
1answer
618 views

ITunes SDK: Loading shared music

I've been messing with the iTunes SDK under .NET 3.5 with C#, but I have not found a way to load a shared music library from another computer on the network. Does anyone know how I can access shared ...
3
votes
1answer
278 views

iTunes COM. How to get track's old location with c#?

iTunes has the old location (file path that no longer exist) of track with ! in front of them. I know this because if you right click on track with ! in front of it and select GetInfo (then choose no, ...
3
votes
4answers
662 views

C# event not being handled

I'm learning C# event handling by writing an app that uses the iTunes COM API. I have a method that should run when iTunes stops playing a song, but the method is never getting called when I trigger ...
1
vote
2answers
66 views

Get subscribed podcasts using ITunes SDK

How can I get a list of all subscribed podcasts using the Itunes SDK?
1
vote
1answer
88 views

How can I use iTunesLib in unattended mode?

I'm making a little app to automate my iPod update. My purpose is sync my iTunes library with my actual one and reencode songs in a lower quality for the iPod. I use the Interop "iTunesLib" from ...
1
vote
2answers
257 views

C# iTuneslib COM only showing collection classes

After adding a reference to iTunes1.13typelibrary, and adding the using ituneslib; In the program, I created the itunesApp class, but in the iTunesLib namespace, there are no options for classes such ...
1
vote
0answers
112 views

How to navigate to iPod Summary View using iTunes SDK?

I'm using the Windows COM SDK with iTunes. I can see my iPod Source, but I want to programmatically "select" it in the iTunes application, so the Device Summary page will be displayed in the iTunes ...
1
vote
3answers
919 views

how do i catch itunes events?

i have added this code iTunes.OnPlayerPlayingTrackChangedEvent += new _IiTunesEvents_OnPlayerPlayingTrackChangedEventEventHandler(iTunes_OnPlayerPlayingTrackChangedEvent); and this code ...
0
votes
1answer
171 views

acessing itunes dj related information through the itunes api

i am in the process of writing a wpf application for a local bar they currently are using itunes dj to manage a voting system to handle patrons song requests they are currently looking for a way to ...
0
votes
0answers
87 views

how to delete iTune SDK c# in dynamic Playlist?

I want to erase a iTunes Playlist entry from a dynamic playlist in c#. With normal playlists i don't have any problem, but iTunes don't want to touch dynamic playlists. can u give me an advice ? Ta
0
votes
1answer
267 views

how to “reveal”/select a track using the ITunes API

I am using the iTunes SDK/API through C#. I am trying to get iTunes to select a particular track in the music library list (i.e., highlight one particular line and only that line). I've been trying to ...