-
-
Save EdCornejo/5b49dd2540b29750f824e18f1402302e to your computer and use it in GitHub Desktop.
Download private embed Vimeo video
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Ctrl+Shift+C to open Chrome Console. | |
| // Choose an IFrame of the Vimeo Video with a comment `player.vimeo.com` | |
| // in the drop-down list `top`. | |
| // Run a script: | |
| var videos = []; | |
| $$('script')[3].textContent.match(/\{[^{]+?mp4[^}]+?\}/g).forEach( | |
| x => { o = JSON.parse(x); | |
| videos.push(o);}); | |
| videos.sort((a, b) => a.quality.localeCompare(b.quality)).forEach( | |
| x => { console.log(x.quality, x.url) }); | |
| // Choose a needed video quality and call context menu to `Save As...` | |
| // or click to open a video and press Ctrl+S. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment