Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
7
votes
3answers
4k views

iTunes App Store API?

Sites like http://www.apptism.com/ readout the app store automatically and display information like title, description, price and images. Where do I find the documentation for this (iTunes API?). I ...
6
votes
1answer
617 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
276 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
658 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 ...
2
votes
0answers
33 views

Can you use iPod objects through iTunes COM SDK?

I am currently trying to use the tracks located in an iPod (not synchronised with the computer I use), in order to create a specific playlist. Is it possible to have a playlist/source that ...
2
votes
3answers
589 views

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. ...
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
253 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
2answers
296 views

Programmatically add converted video to iTunes using SDK

I've written some simple code which interfaces with HandbrakeCLI to convert a video into a format that iTunes can handle. Once that has finished, I want it to be automatically added to iTunes. From ...
1
vote
2answers
173 views

Javascript Question: How to Convert Hexadecimal Number to High and Low 32-bit values

I need a few lines of Javascript code that will take a hexadecimal number (in the form of a 16 character string) and convert it to two variables representing the high and low 32 bits of the 64-bit ...
1
vote
0answers
111 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
1answer
465 views

How to access iTunes Library both in Windows and Mac OS X

I would like to know how can I access to the iTunes Library information in multi-plataform way. I want to make a program that can run in both Windows and Mac OS X. Which programming language, API do ...
1
vote
2answers
186 views

accessing enums in a COM object [jscript]

How do I access an enum that is defined within a COM interface? Specifically, I've created a new instance of an iTunes.Application: var iTunesApp = WScript.CreateObject("iTunes.Application"); ...
1
vote
2answers
633 views

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 ...
1
vote
3answers
916 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
43 views

How to get given App names and details by searching app name in objective c?

I need to connect my app from xcode to iTunes to fetching apps details. I will provide a name and then it will return me a result of those apps names which contains the keywords. Then I need to fetch ...
0
votes
0answers
20 views

how can i get promotional (turned free) apps & free applist via itunes api?

Hello & thanks in advance. I need 2 things - retriving "free"(without using price=0.0) or "paid only" apps list from appstore using itunes api - retrive apps that turned free for a promotional ...
0
votes
1answer
47 views

regarding the itunes com sdk, is there a way to load files to an application

Example - there is a free application called Stanza - when my iDevice is connected, I can load files to the application through iTunes which then makes them accessible in the application after ...
0
votes
0answers
80 views

itunes com interface: how to remove a track from a playlist?

How can I remove one track from an iTunes playlist using the Windows COM sdk? Reading the iTunes COM Interface Doc, I can see functions to list the tracks in a playlist [oldplay.Tracks], create a new ...
0
votes
2answers
167 views

itunes persistent id - music library xml version and iTunes hex version

I'd like to read a hex PersistentID string from ItunesMusicLibrary.xml, get two ints representing the high and low 32 bits, then use those two ints in an iTunes script. Unfortunately, the Persistent ...
0
votes
2answers
217 views

How To Fix Unicode Character Issues On iTunes Feed

I am trying to pull applications from the Apple App Store using their authorised flat feed. However, I am having a tough time dealing with the encoding issues. Here are some examples : A Japanese ...
0
votes
1answer
168 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
86 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
0answers
78 views

Timeout/exception when accesing iTunes COM interface on Windows as admin

I'm trying to write an iTunes script for Samurize (the bundled media DLL doesn't grab album art), and running into all sorts of errors. I tried (Active)Python first and then JScript, and the error is ...
0
votes
2answers
338 views

Upload music to iPhone/iPod/… directly without iTunes

is it possible to program a tool that sends music to iPhone/iPod without putting the songs in iTunes? the tool can work with "iTunes SDK" andit is not attended to go against Apple rules the idea is ...
0
votes
0answers
629 views

How do I get data from the iTunes app store

I'm trying to scrape the entire iTunes App Store so that I can store it in a database for a project I'm working on. I'm having a hard time finding the best way to do this. I know there are ways to get ...
0
votes
1answer
266 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 ...
0
votes
4answers
287 views

Download new app from within an iPhone-app

I have developed a game and are planning to make a "Lite" version of that game in order to promote the "Premium" version of the game. Information about how to make In-App-Purchase is easy to find. But ...
0
votes
1answer
549 views

Accessing a Track Name in iTunes via iTunes' plist (XML) File

I've learned that iTunes XML file is actually a plist, and instead of trying to parse the raw XML, I could use property lists. I'm able to access the "Tracks" section, but I'm able to unable to do ...
0
votes
1answer
294 views

iPhone: Writability of the Documents directory

Is there a way to write files to this directory remotely? I'm hoping it's possible to do via iTunes or whenever the iPhone is connected to a Mac/PC via USB. Could this be done with an iTunes plugin? ...