Skip to content

Instantly share code, notes, and snippets.

@devinschumacher
Created June 12, 2024 09:25
Show Gist options
  • Save devinschumacher/a189434fc9f374965888ca2dc793953e to your computer and use it in GitHub Desktop.
Save devinschumacher/a189434fc9f374965888ca2dc793953e to your computer and use it in GitHub Desktop.
How to Download Vimeo Video for FREE (No Extensions Needed)
tags
vimeo
productivity hacks
hacking

How to Download Vimeo Video for FREE (No Extensions Needed)

  1. Get the URL of the vimeo video using chrome dev tools (inspect elements or download .har file)
  2. Download with streamlink & run a simple cmomand in terminal

1. Get the Vimeo video URL

1.1 Open chrome developer tools by right clicking on the page & choosing 'Inspect' 1.2 Press cmd+f for 'find' and type player.vimeo.com/video in the search bar > press the ↑ / ↓ arrows will you see the URL & copy it

2 (1)

2. Download streamlink

  1. Open your terminal
  2. Download streamlink: brew instal streamlink
  3. Construct the following command syntax & press enter
streamlink https://player.vimeo.com/video/<vimeoID> best -o <file/path/to/download/to/video_name.mp4>

This is what my finished command looks like:

streamlink https://player.vimeo.com/video/949271536 best -o ~/Desktop/vimeo_video.mp4

Running this command downloaded the video to my desktop and name if vimeo_video.mp4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment