1.0.0 • Published 6 years ago

serato-crater v1.0.0

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

serato-crater Build Status

Reads a Serato crate file and returns columns and songs.

Install

$ npm install serato-crater

Usage

const seratoCrater = require("serato-crater");

seratoCrater(path.join(__dirname, "example.crate")).then(crate => {
	console.log(crate);
	//=> { columns: [ 'song', 'artist', 'bpm', 'key', 'length', 'genre', 'track' ],
	// songs:
	//   [ 'Users/rick/Music/Antonio Giacca - Birdland (Radio Mix).mp3',
	//     'Users/rick/Music/Bounce (Extended Mix) - Calvin Harris feat. Kelis.m4a' ] }
});

var crate = seratoCrater.sync(path.join(__dirname, "example.crate"));
console.log(crate);
//=> { columns: [ 'song', 'artist', 'bpm', 'key', 'length', 'genre', 'track' ],
// songs:
//   [ 'Users/rick/Music/Antonio Giacca - Birdland (Radio Mix).mp3',
//     'Users/rick/Music/Bounce (Extended Mix) - Calvin Harris feat. Kelis.m4a' ] }

API

seratoCrater(path)

Returns a Promise for the parsed crate.

seratoCrater.sync(path)

Returns the parsed crate.

path

Type: string Path to a Serato .crate.

License

MIT ©