Skip to content

Instantly share code, notes, and snippets.

@patrislav1
Last active March 29, 2024 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patrislav1/bb6397ce92ce30a072ebb8b1d5adca1b to your computer and use it in GitHub Desktop.
Save patrislav1/bb6397ce92ce30a072ebb8b1d5adca1b to your computer and use it in GitHub Desktop.
Save video file of a Zoom recording

Save zoom recording with a bookmarklet

  1. Create bookmarklet

Add bookmark with this URL:

javascript: (() => { vid = document.querySelector('.vjs-tech'); console.log(vid.src); window.open(vid.src, '_blank'); })();
  1. Open Zoom recording link
  2. Click on the bookmark
  3. A new tab should open with the video.
  4. Use "Save page as ..." to save the video in .mp4 format.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment