Videos like
- https://{ORGID}.sharepoint.com/personal/{USERID}/_layouts/15/stream.aspx?id={VIDEOID}%2Emp4&ga=1
- https://{ORGID}.sharepoint.com/:v:/p/{USERID}/{VIDEOID}
- Run video from SharePoint corporate account or OneDrive,
- In Chrome open
Web inspectorand inNetworkfilter byvideomanifest - Copy this url
- Run
ffmpeg -i "%URL%" -codec copy outputvideo.mp4




Anyone who doesn't feel like downloading a Chrome extension can use
yt-dlpwith the following syntax:yt-dlp -f "dash-vcopy+dash-audcopy" --cookies-from-browser firefox "SHAREPOINT_PAGE_URL"Provided you use Firefox of course. Also, make sure you have FFmpeg specified in the
%PATH%environment variable as well, otherwiseyt-dlpwon't be able to merge the resulting two files (the audio and the video file). I highly recommend leaving the format specifier in as well as the downloads didn't work properly for me without them.