clementine-music-library
v1.0.1
Published
Load track data from your Clementine music library
Downloads
6
Maintainers
Readme
Clementine Music Library Access for Node.js
Load track data from your Clementine music library with Node.js
Install
$ npm install clementine-music-library
Be aware that this is not pure javascript, it relies on SQLite3 binaries. The correct binary should be automatically downloaded but there can be issues, for example when running under Electron it is necessary to run electron-rebuild.
Usage
require("clementine-music-library");
clementineMusicLibrary.getSongs({ played: true }, function(song) {
console.log(song)
}).then(function() {
console.log("Loaded all played songs from Clementine")
});