vimeo-downloader

1.0.4 • Public • Published

node-vimeo-downloader

Yet another vimeo downloading module. This time written with only Javascript and a more node-friendly streaming interface.

Build Status

Usage

var fs = require('fs');
var vidl = require('vimeo-downloader');
 
vidl('https://vimeo.com/183482793')
  .pipe(fs.createWriteStream('video.flv'));

API

ytdl(url, options)

Attempts to download a video from the given url. Returns a readable stream. options can have the following keys

  • quality - Video quality to download. a list of values are highest, medium, lowest or resolution tag liek 360p, 144p etc..
  • format - Default it download the mp4 format
// Example with `quality` option.
vidl(url, { quality: '360p' })
  .pipe(fs.createWriteStream('vide.mp4'));

Install

npm install vimeo-downloader

License

MIT

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.4
    43
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.4
    43
  • 1.0.3
    1
  • 1.0.2
    1
  • 1.0.1
    1
  • 1.0.0
    0

Package Sidebar

Install

npm i vimeo-downloader

Weekly Downloads

11

Version

1.0.4

License

MIT

Unpacked Size

12.1 kB

Total Files

13

Last publish

Collaborators

  • subbarao