Skip to content

Latest commit

History

History
32 lines (21 loc) 路 681 Bytes

README.md

File metadata and controls

32 lines (21 loc) 路 681 Bytes

Vimeo Downloader

Script to download Vimeo videos.

Instructions:

  1. Open the browser developer console on the tab with the video. Filter master.json on Network dev tab.
  2. Start the video.
  3. Copy the full URL from master.json.
  4. Run the script as described below.

Two arguments are required:

  1. Output filename
  2. master.json URL

Example:

node index.js VIDEO_NAME https://URL/master.json

Make an alias to use it everywhere.

mkdir -p $HOME/scripts/ && cp index.js $HOME/scripts/vimeo-downloader.js

# Add this line in your ~/.zshrc, ~/.bashrc or whatever you use
alias vimeo-downloader="node $HOME/scripts/vimeo-downloader.js $1 $2"