alistairphillips.com

I’m : a web and mobile developer based in the Australia.


Create an iTunes Playlist containing songs without lyrics

Sourced from reddit this AppleScript will create a new iTunes playlist containing songs from the "Good Stuff" playlist which don't contain lyrics.

tell application "iTunes"
  make new playlist with properties {name:"No Lyrics1"}
  duplicate (every track of playlist "Good Stuff" whose lyrics is equal to "") to playlist "No Lyrics1"
end tell