Voici un script qui permet d’obtenir les information sur les morceaux ou séquences présents dans une liste de lecture ou podcast :
set nfo to {} tell application "iTunes" set podtracks to every track of playlist "podcasts" repeat with a_track in podtracks set end of nfo to {artist of a_track, album of a_track, ¬ name of a_track, rating of a_track} end repeat end tell return nfo -- Liste des informations
