Skip to content

vdown v0.0.1

Latest
Compare
Choose a tag to compare
@erremauro erremauro released this 10 May 08:26
· 1 commit to main since this release

vdown is a Vimeo downloader that let you download audio/video data from a
vimeo stream and combine them into a single video file.

Installation

Unzip vdown then use yarn or npm to install the dependencies

cd vdown
yarn install

How to use it

Inspect the page that contains the video you wish to download locally and from
the network information tab, find its related master.json and copy the file URL.

Now you can use ./bin/vdown to download your video.

Download a single video

You can download a single video by specifing the master.json URL and optionally
an output name for your video. If you don't specify a name for your video the
output file will be named using the vimeo's clip_id (UUID).

To download a single video use the command:

vdown --url "https://my.cdn.com/master.json" --output "~/Movies/my_video.mp4"

Download multiple videos

Create a JSON document that contains all your downloads, structured as follow:

{
	"dest": "~/Downloads",
	"files": [
		{ 
			"name": "01 - My First File.mp4",
			"url": "https://my.cdn.com/1234/master.json"
		},
		{ 
			"name": "02 - My Second File.mp4",
			"url": "https://my.cdn.com/5678/master.json"
		},
	]
}

Feed the document to vdown using the command:

vdown --json ./download.json

Usage

Usage: vdown [options]

Options:
  -u, --url <masterURL>  master.json URL
  -o, --output <file>    output file path
  -j, --json <file>      Download files from a json input
  -h, --help             display help for command