Downloading Zoom cloud recordings¶
Ever got a Zoom Cloud recording shared with you, but you wanted to download the video directly? This solution comes from this StackOverflow answer.
Paste document.addEventListener('contextmenu', event => event.stopPropagation(), true); into the DevTools console, then right click on the video window and save it!
Tip
To download the subs, go to the Network tab in DevTools and search for vtt. Right click on the response, Copy > Copy response, and save the clipboard contents to a .vtt file. Make the .vtt file name the same as the video file to ensure that it is auto-recognized as a sub track by media players (like mpv).