NoArtworkPlaylist.js


Article Image
Tags:

Added On: 9th Jan 08

Links: [site] [download]

This script simply builds a playlist of songs whos tags are missing artwork. A new user playlist called “No Artwork” is generated, and added to it are all songs that still need artwork adding.

Why not check out some of the artwork-finding solutions on this site.

var iTunesApp = WScript.CreateObject(“iTunes.Application”);
var tracks = iTunesApp.LibraryPlaylist.Tracks;
var numTracks = tracks.Count;
var i;
NoArtPlaylist = iTunesApp.CreatePlaylist(“No Artwork”);

for (i = 1; i <= numTracks; i++)
{
var currTrack = tracks.Item(i);
if ( currTrack.Artwork.Count == 0 )
NoArtPlaylist.AddTrack(currTrack);
}

2 Responses to “NoArtworkPlaylist.js”

  1. Tyler says:

    Awesome work. this saves me alot of time

  2. Vaibhav says:

    Hi,
    I want to know that how you install theses scripts in Vista. Means Could you tell me the detailed steps to install theses scripts….

Leave a Reply