youtube-best-video
v0.0.10
Published
Find the best video for a given song name.
Downloads
45
Maintainers
Readme
youtube-best-video
Find the best (music) video for a song you want on YouTube
Install
The module is available via npm and can be installed as follows:npm install youtube-best-video
Usage
var bestVideo = require('youtube-best-video');
bestVideo.findBestMusicVideo('Deadmau5 - Ghosts N Stuff', function(err, video) {
if(err) return console.log(err);
console.dir(video);
});