diff options
-rw-r--r-- | README.md | 12 | ||||
-rw-r--r-- | mongo-edu.js | 2 | ||||
-rw-r--r-- | package.json | 3 |
3 files changed, 10 insertions, 7 deletions
@@ -30,14 +30,18 @@ $ mongo-edu --help Options: -d download path [required] -u email address - -h switch from videos (default) to handouts --py pass switch to point to Python + --ncc no check certificate for py3.x < py3.4.x + +Videos: --cw switch from wiki video lists (default) to courseware --cwd same as --cw and dumps list of videos to file in -d - --co sequence video files in order of the course + --co sequence video files in order of the courseware --cc get closed captions --hq get high quality videos - --ncc no check certificate for py3.x < py3.4.x + +Handouts: + -h switch from videos (default) to handouts --uz unzip handout files ``` @@ -47,7 +51,7 @@ Options: Download all available videos from lists present in the `wiki` pages for any given week. If no lists are present in `wiki` add `--cw` to search through the main courseware pages. -Add `--cc` to download closed captions with the videos and `--hq` to get high quality videos. +Add `--cc` to download closed captions with the videos and `--hq` to get high quality videos. Use with `--co` to sequence the video files in order of the wiki ( based on the order of the files present in the wiki lists ) or courseware ( when used with `--cw` preserves the courseware order ). ![screenshot](https://raw.github.com/przemyslawpluta/mongo-edu/gh-pages/images/me-videos.gif) diff --git a/mongo-edu.js b/mongo-edu.js index e65e9f5..15b2db5 100644 --- a/mongo-edu.js +++ b/mongo-edu.js @@ -24,7 +24,7 @@ var mdbvideos = require('./lib/login'), .describe('hq', 'get high quality videos').boolean('hq') .describe('ncc', 'no check certificate').boolean('ncc') .describe('uz', 'unzip handout files').boolean('uz') - .describe('co', 'sequence video files in order of the course').boolean('co') + .describe('co', 'sequence video files in order of the courseware').boolean('co') .demand('d'); exports.create = function start() { diff --git a/package.json b/package.json index 3a68d69..3cd9f30 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "mongo-edu", "preferGlobal": true, - "version": "0.1.23", + "version": "0.1.24", "author": "Przemyslaw Pluta <przemyslawplutadev@gmail.com> (http://przemyslawpluta.com)", "description": "Select and download videos and handouts from university.mongodb.com courses", "main": "./mongo-edu", @@ -44,7 +44,6 @@ "request": "~2.36.0", "request-progress": "~0.3.1", "rimraf": "~2.2.8", - "semver": "~2.3.0", "unzip": "~0.1.9", "which": "~1.0.5", "youtube-dl": "~1.3.6" |