Skip to content

Instantly share code, notes, and snippets.

@ssi-anik
Last active April 20, 2018 09:45
Show Gist options
  • Select an option

  • Save ssi-anik/7a02bc67b0d29d2c9eeb8f5ee7f707cb to your computer and use it in GitHub Desktop.

Select an option

Save ssi-anik/7a02bc67b0d29d2c9eeb8f5ee7f707cb to your computer and use it in GitHub Desktop.
Egghead video downloader
  1. Go to your expected directory where you want your files to be downloaded.
  2. Open the directory in terminal.
  3. Run lynx -dump http://EGGHEADURL.tld | awk '/lessons\//{print $2}' | awk '!a[$0]++' | sed '/\?/d' > links1.txt replace the URL.
  4. Run youtube-dl -c -i -o "%(autonumber)s-%(title)s.%(ext)s" -a links.txt --external-downloader aria2c --external-downloader-args "-j1 -x16 -s16 -k1M" in your terminal.
  5. Wait for the download to finish.

Moreover, BUY egghead subscriptions.

Source:

  1. https://www.youtube.com/watch?v=rGMGrCWHkQg
  2. https://github.com/smahi/egghead-video-download
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment