https://github.com/nishanthvijayan/nptel-dl
A command line tool to download course videos from NPTEL
https://github.com/nishanthvijayan/nptel-dl
mooc nptel
Last synced: 6 months ago
JSON representation
A command line tool to download course videos from NPTEL
- Host: GitHub
- URL: https://github.com/nishanthvijayan/nptel-dl
- Owner: nishanthvijayan
- Created: 2019-03-23T08:13:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-31T13:48:59.000Z (over 7 years ago)
- Last Synced: 2024-06-20T08:11:06.636Z (about 2 years ago)
- Topics: mooc, nptel
- Language: Go
- Homepage:
- Size: 84 KB
- Stars: 12
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nptel-dl
A command line tool to download course videos from NPTEL

## Features
- Download course to user requested path (option: `-dir`).
- Support downloading in MP4, FLV & 3GP file formats (option: `-format`)
- Start download from a specific lecture number (option: `-start`)
## Download
You can download the binaries for your machine from the [releases page](https://github.com/nishanthvijayan/nptel-dl/releases).
## Usage
### Help
```
nptel-dl -h
```
### Download course
```
nptel-dl -courseID 106106198
```
### Download course to specific directory
```
nptel-dl -courseID 106106198 -dir ~/Desktop/myawsomecourses/machine-learning
```
### Start download from a specific lecture number
```
nptel-dl -courseID 106106198 -start 21
```
### Download different formats
```
nptel-dl -courseID 106106198 -format 3gp
```
Currently supported format options are: mp4, 3gp & flv.
Default format is MP4
## TODO:
- Add mp3 download support (option: `-format mp3`)
- Add PDF Transcript download support (option: `-transcript`)
- Add info option that list all videos (option: `-info`)
- Add option to download a specific module (option: `-module`)
- Add option to download till a specific lecture number (option: `-end`)
- Support for resumable downloads