Vimeo Player Video Download Script
Vimeo Player Video Download Script
You can run the script below from the console
tab in the developer tools(F12)
on a page that only Vimeo Player plays.
var initial_script = top.document.querySelector('body>script').innerHTML;
// regex
var master_link_regex = RegExp('([a-zA-Z0-9-~=:%/\/\.,]+master\.json)');
var master_link = master_link_regex.exec(initial_script)[0];
fetch(master_link).then(r=>r.json()).then(function(resp) {
var video_id = resp.video.slice(-1)[0].id;
window.location.href = master_link.replace(/\/sep\/.*/ig, `/parcel/video/${video_id}.mp4`);
})
network
tab in the Developer tools(F12)
master.json
into Filtermaster.json
pagemaster_link
var master_link = "???" // Replaced the URL you just copied!!
fetch(master_link).then(r=>r.json()).then(function(resp) {
var video_id = resp.video.slice(-1)[0].id;
window.location.href = master_link.replace(/\/sep\/.*/ig, `/parcel/video/${video_id}.mp4`);
})