Revision 1 as of 2007-02-12 12:32:07

Clear message

Does anyone know how to add a track to a playlist using appscript?

Maybe something like this:

def add to playlist(a, t, pl ):

Find a connected ipod making no assumptions about the name of the ipod:


from appscript import *

def find_ipod( a ):

ipod = find_ipod( app('Itunes') )


Find the library making no assumptions about the name of the library (e.g. for non-english versions of itunes it's nog "Library"):


from appscript import *

def find_library( a ):

library = find_library( app('Itunes') )


Create a new playlist on a certain source (i.e. either the library or an ipod, as returned from one of the functions above).


src.make( new=k.user_playlist, with_properties={k.name: 'My new playlist'} )


Unable to edit the page? See the FrontPage for instructions.