Skip to content

alik604/stream.sfu.ca-media-downloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stream.sfu.ca-media-downloader

Easily download a video (lecture) for offline viewing, from stream.sfu.ca/Media/Play/*

Bookmarklet

javascript:const file=window.location.pathname.split("/")[3];fetch("https://stream.sfu.ca/Media/PlayerService/PlayerService.svc/json/GetPlayerOptions",{credentials:"include",headers:{"User-Agent":window.navigator.userAgent,Accept:"application/json, text/javascript, */*; q=0.01","Accept-Language":"en-US,en;q=0.5","Content-Type":"application/json; charset=utf-8","X-Requested-With":"XMLHttpRequest"},referrer:window.location.toString(),body:JSON.stringify({getPlayerOptionsRequest:{ResourceId:file,QueryString:"",UseScreenReader:false,UrlReferrer:""}}),method:"POST",mode:"cors"}).then(response=>response.json()).then(function(data){for(const stream of data["d"]["Presentation"]["Streams"]){for(const url of stream["VideoUrls"]){if(url["MimeType"]!=null&&url["MimeType"].includes("x-mpegurl"))continue;if(url["Location"]!=null){window.open(url["Location"]);return}}}alert("Unable to find video URL.")}).catch(error=>{alert("Unable to find the video URL due to error.")});

Installation

  1. Copy the Bookmarklet
  2. In your browser create a bookmark to the current page. Doen't matter what said page is.
  3. Edit the said bookmark's URL property/attribute, paste in the contents of the bookmarklet. 📌
    • Replacing the original URL. CTRL + d, More.., Pasting in the Bookmarklet
  4. Go to the lecture, click the title to view at the webpage that has the URL stream.sfu.ca/Media/Play/*, rather than canvas.sfu.ca/courses/*/modules/items/*. Note: if there is no title, the should be a button on the bottom right for a pop-up. Looks like a little box with a arrow pointing top-right
  5. Click the Bookmarklet
    • Be sure to allow popups
  6. On the new tab, right-click, save-as, ... 🤯
  7. [optional] run something akin to for i in *.mp4; do ffmpeg -i "$i" -vcodec libx265 -crf 30 "$i_compressed.mp4"; done to use ffmpeg to compress for long term storage. See the docs for -crf 30. see this site Enjoy 😇

Click here:

Or the pop-out button on the bottom-right corner

You go to the site and click the Bookmarklet

then,right-click, save-as, ...


About

Easly download a video (lecture) for offline viewing, from stream.sfu.ca/Media/Play/*

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published