Ubuntu – how to use wget to download videos

wget

I want to download videos from this link http://nptel.iitm.ac.in/video.php?subjectId=106102064
I don't know how to use wget to download the videos from this site. Please help me. Thanks.

Best Answer

better still:

wget -c -O /pathtoLocalDirectory/choosefilename.extensionLike3gpORflvORmp4 "HerePutTheHyperlinkInsideInvertedCommasWithoutAnyExtraSpacesSay http://somesite.something.somemorethings.etc"

reasons:

  • -c: if connection to server is broken before completion of your download then wget resumes from previously downloaded position, otherwise it wastes away what was already downloaded and has to restart from zero

  • -O: allows you to choose the location and filename of your choice in your computer

Related Question