Questions about the iTunes SDK COM interface for interacting with the iTunes application.
Questions tagged [itunes-sdk]
83 questions
3
votes
0 answers
Get iOS app logs by command line
is there a possibility to get the app logs (not crash reports) from iOS devices by a command line tool?
The goal is to provide an automation to get the logs from the device.
Greets.

Steve Murdock
- 709
- 1
- 10
- 20
3
votes
4 answers
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 the event in the app by hitting the "stop/pause"…

RexE
- 17,085
- 16
- 58
- 81
3
votes
3 answers
how do i catch itunes events?
i have added this code
iTunes.OnPlayerPlayingTrackChangedEvent += new _IiTunesEvents_OnPlayerPlayingTrackChangedEventEventHandler(iTunes_OnPlayerPlayingTrackChangedEvent);
and this code
private void…

user112884
- 65
- 7
3
votes
2 answers
How to list All iPhone Apps By a SIngle developer in iPhone App?
In My Application I want show all my iPhone apps from itunes store in a tableview. If user clicks any one of cell it leads to take to appstore of that application.I know just statically by giving link of each application. As per my need i need to…

KAREEM MAHAMMED
- 1,675
- 14
- 38
2
votes
1 answer
How to get track filename from library
I'm trying to read all playlists and the music file in each playlist.
Here is my code in C#:
iTunesAppClass iTunesAppClass = new iTunesAppClass();
IITSourceCollection sources = iTunesAppClass.Sources;
foreach (IITSource src in sources)
{
if…

FLICKER
- 6,439
- 4
- 45
- 75
2
votes
0 answers
Can you use iPod objects through iTunes COM SDK?
I am currently trying to use the tracks located on an iPod (not synchronized with the computer I use), to create a specific playlist.
Is it possible to have a playlist/source that represents a non-synchronized iPod?
I have heard that reading music…

KVolker
- 21
- 1
2
votes
1 answer
Access iCloud Music Library download and iCloud status programmatically
Can the iCloud download status be accessed programmatically from the MPMediaLibrary - MPMediaItemProperty or other source?
We want to detect the source of a song so we know if it is from Apple Music (DRM), matched using iTunes Match (not DRM),…

Jim Leask
- 6,159
- 5
- 21
- 31
2
votes
1 answer
C# iTunesLib com: AlbumArtist member not accessible with intellisense
I am using the iTunesLib V1.13 in C#.
I can read the current playing track just fine together with its Artist, Album, TrackName, Duration, etc.. properties.
But I can't read the 'AlbumArtist' property. Even though it shows up while debugging:
But…

Tim Kathete Stadler
- 1,067
- 4
- 26
- 52
2
votes
1 answer
Disconnecting iTunes COM
I'm currently working with the iTunes COM with .NET, and something I came across previously, which stopped me using it, has happened again and I can't for the life of me figure it out.
When I go to close iTunes during or after my program has…

Laim McKenzie
- 183
- 8
2
votes
4 answers
Media Kind in iTunes COM for Windows SDK
I recently found out about the awesomeness of the iTunes COM for Windows SDK. I am using Python with win32com to talk to my iTunes library. Needless to say, my head is in the process of exploding. This API rocks.
I have one issue though, how do I…

Joel Verhagen
- 5,110
- 4
- 38
- 47
2
votes
2 answers
iTunes win32com Python - AddTrack not working
I've been using the following code to try and create a new playlist in iTunes and a song from the main library - its example code i've found but i keep getting the following error when it runs. I've had a look through the iTunes COM interface…

andy2013
- 55
- 1
- 1
- 6
2
votes
2 answers
Need an explanation on iTunes COM persistent ID. Is the ID for a track same when its transferred to an iPod?
I am writing a JScript script with iTunes COM api for updating ratings and played count from the iPod database back into iTunes Library. In order to do so, the script should be able to recognize the songs that were transferred from this iTunes…

detj
- 5,299
- 6
- 30
- 32
1
vote
1 answer
Differentiate iTunes internal playlists and user playlist
Following my previous question
When I fetch Playlists in iTunes library I get some entries which seems to be default playlists for iTunes
Here is my code:
App = new iTunesAppClass();
IITSourceCollection sources = App.Sources;
foreach (IITSource src…

FLICKER
- 6,439
- 4
- 45
- 75
1
vote
2 answers
Get subscribed podcasts using ITunes SDK
How can I get a list of all subscribed podcasts using the Itunes SDK?

Kjensen
- 12,447
- 36
- 109
- 171
1
vote
2 answers
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 iTunes.exe and I'm working on C#.
My program works…

Benlitz
- 1,952
- 1
- 17
- 30