Skip to content

Instantly share code, notes, and snippets.

@vigzmv
Last active December 7, 2017 09:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vigzmv/270af2130b870faed60030f1cdfcbadb to your computer and use it in GitHub Desktop.
Save vigzmv/270af2130b870faed60030f1cdfcbadb to your computer and use it in GitHub Desktop.
Download videos from egghead.io
  1. Install youtube-dl from here.
  2. Install ffmpeg from here
  3. To download a course with best video/audio quality and a format of 00001-Introduction_to_The_Beginner_s_Guide_to_ReactJS.mp4

youtube-dl -cio '%(autonumber)s-%(title)s.%(ext)s' -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best' <Course URL> --restrict-filenames

Replace Course Url with egghead url. Example:

youtube-dl -cio '%(autonumber)s-%(title)s.%(ext)s' -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best' https://egghead.io/courses/the-beginner-s-guide-to-reactjs --restrict-filenames

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment