1.0.4 • Published 8 years ago

video-downloader v1.0.4

Weekly downloads
7
License
ISC
Repository
-
Last release
8 years ago

Installing

npm i video-downloader --save

Code Climate

Using

var download = require('video-downloader');


var videoUrl = 'http://localhost/test.webm'
var outputName = 'output';
var outputDir = '/tmp/';

download(videoUrl, outputName, outputDir).then(function(output) {
  console.log(output);
});