playlist-maker
v1.0.0
Published
Generate a youtube playlist from a string with URLs
Downloads
5
Readme
playlist-maker
A simple node.js module to generate a youtube playlist from a string of whitespace or comma separated video URLs
Installation:
npm install playlist-maker --save
Usage
var playlistMaker = require("playlist-maker);
var videos = "https://www.youtube.com/watch?v=KbRtA_brCQ0,https://www.youtube.com/watch?v=k05i8bT_Pkg,https://www.youtube.com/watch?v=b5X7ZiAOkMU";
playlistMaker.getPlaylist(videos, function(result){
console.log("Here's your playlist:",result);
});
Example:
See:
- https://github.com/aeciorc/playlist-maker/tree/test-deploy
Or see it running here:
- https://aeciorc-pmaker.herokuapp.com/