itunes-library-stream

0.0.0 • Public • Published

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.

Readme

Keywords

none

Package Sidebar

Install

npm i itunes-library-stream

Weekly Downloads

5

Version

0.0.0

License

MIT

Last publish

Collaborators

  • hughsk