How to Download Password-Protected Vimeo Videos That Are Not Embedded

Learn how to handle password-protected Vimeo videos from direct Vimeo pages without relying on embedded players.

Author
2 min read
vimeo
download
password protected
privacy
tutorial

Some password-protected Vimeo videos live on Vimeo's own domain rather than inside an embedded player on a third-party site. The download process for these requires a slightly different approach — you need to pass both your browser cookies and the video password to yt-dlp.

Steps

  1. Navigate to the video page and unlock it with the password
  2. Look up your Chrome profile number
  3. Build and run the download command

1. Navigate to the video page and unlock it with the password

Open the Vimeo URL in your browser and type in the password when prompted. This authenticates your session so the cookies will contain the access grant.

2. Look up your Chrome profile number

  1. Type chrome://profile-internals/ into your Chrome address bar
  2. Find your active profile and note its number

image

3. Build and run the download command

You'll need three pieces of information:

  1. The video URL in the format https://vimeo.com/{VIDEO_ID}
  2. Your Chrome profile number from the previous step
  3. The video password

Here's the command template:

yt-dlp \
  'https://vimeo.com/{VIDEO_ID}' \
  --cookies-from-browser "chrome:Profile {NUMBER}" \
  --video-password '{PASSWORD}' \
  -N 20 \
  -S 'codec:avc,res,ext' \
  --merge-output-format mp4 \
  --remux-video mp4 \
  --postprocessor-args "ffmpeg:-movflags +faststart"

And just like that, the download kicks off!

image

The video file is now saved to your machine.

image

Related Guides