0.0.0 • Published 10 years ago

itunes-library-stream v0.0.0

Weekly downloads
2
License
-
Repository
-
Last release
10 years ago

itunes-library-stream Flattr this!experimental

Streaming parser for the contents of iTunes Library XML files. Supports retrieving the complete library track listing, but playlist listings aren't complete yet.

Should be useful for either ditching iTunes programatically or at least mucking around with its data.

Usage

itunes-library-stream

itunes.createTrackStream()

Creates a transform stream which takes raw XML data and spits out JSON objects for each discovered track.

var itunes = require('itunes-library-stream')
var userhome = require('userhome')
var path = require('path')
var fs = require('fs')

// If you're not running OSX, update this
// to point to the correct file in your
// iTunes Library folder.
var location = path.resolve(userhome()
  , 'Music/iTunes/iTunes Music Library.xml'
)

fs.createReadStream(location)
  .pipe(itunes.createTrackStream())
  .on('data', function(data) {
    console.log('[' + data.Artist + '] ' + data.Name)
  })

License

MIT. See LICENSE.md for details.