Skip to content

Instantly share code, notes, and snippets.

@brenogcota
Last active June 25, 2021 21:57
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
get url from vimeo iframe
// 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