Script to download Vimeo videos.
Instructions:
- Open the browser developer console on the tab with the video. Filter
master.jsonon 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.jsonURL
Example:
node index.js VIDEO_NAME https://URL/master.jsonMake 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"