get url from vimeo iframe
This file contains 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
// get url | |
let url = document.querySelector('body > script').text.split('\"url\":\"')[10].split('.mp4')[0] + '.mp4'; | |
// open in new tab | |
window.open(url); | |
// ** Copy link and run in your terminal | |
wget -c 'your-link' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment