Script to download Vimeo videos.
Instructions:
- Open the browser developer console on the tab with the video. Filter
master.json
on Network dev tab. - Start the video.
- Copy the full URL from
master.json
. - Run the script as described below.
Two arguments are required:
- Output filename
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"