Tuesday, 7 April 2020

Download any video from Google Chrome


Follow the below steps on your computer/laptop in chrome (recommended).
  1. Login to udemy go to the course and play the lecture, for eg. first lecture is running
  2. Open ‘Developer tools’ by pressing ‘F12’ go to the ‘sources’ tab
  3. Switch to ‘Snippets’ tab
  4. Add new snippet with any name for eg. ‘udemy-downloader
  5. and paste the code below

    1. var videoLink = document.querySelector(".vjs-tech").getAttribute('src');
    2. window.open(videoLink,'_blank');
  6. Save the snippet file using ‘ctrl+s
  7. And now Right click on the snippet file (udemy-downloader) which have the scripts and click on Run
    It will download the video for you in selected Quality - (on which it is playing)
  8. Now you only need to follow step number to download your favorite lecture.

    Hope this is helpful :)

No comments:

Post a Comment