Quote:
Originally Posted by anonstream
Any advice - especially for Zoom recordings?
|
I can answer this now after being in a situation to be logged in Zoom,
attend video conference and then download recorded video.
There are 2 situations:
To record video conference in real time the best solution to my knowledge is screen recorder:
https://www.wmrecorder.com/download
WM Capture 7 is my best friend when nothing else works.
To download recorded video I had video link and a password.
Run Firefox (not another browser) and paste video link in address bar.
Enter the password and press "Access Recording".
New window opens with embeded player. Before starting the video press F12 to start Developer Tools,
select Network monitor.
In "Filter URLs" bar type mp4. This will filter all urls and return mp4 url link to the video.
If no url shows refresh (reload) the page.
Right click on mp4 video url and select "Copy as cURL (Windows)"
This will copy url to clipboard.
It is very long url as it contains nothing less than whole cookie within.
It is impractical to use this url directly on command line prompt as it needs to be modified.
Create txt file and paste clipboard content to it.
At this point string looks like: curl url-from-network-monitor.mp4
Modify it to look like: curl -k url-from-network-monitor.mp4 -o file.mp4
Copy that from txt file and paste and enter on command line prompt.
I can do it all in cmd window directly after some practice
This method downloaded video file I was after.