All Projects → coursera-dl → Edx Dl

coursera-dl / Edx Dl

Licence: lgpl-3.0
A simple tool to download video lectures from edx.org (and other openedx sites)

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Edx Dl

Candy
🍭 Cross-platform YouTube-downloader with playlist and channel support as well as build-in audio / video converter.
Stars: ✭ 229 (-87.05%)
Mutual labels:  download-videos, downloader, youtube
Vidify
Play music videos automatically for the songs playing on any device
Stars: ✭ 95 (-94.63%)
Mutual labels:  videos, youtube
Gophie
An Aggregator Engine for searching and downloading movies free - NO ADs!
Stars: ✭ 94 (-94.69%)
Mutual labels:  download-videos, downloader
Auto Youtube Subscription Playlist 2
Script automatically adds videos to playlists from Youtube channels and/or subscriptions (Youtube Collections alternative).
Stars: ✭ 136 (-92.31%)
Mutual labels:  videos, youtube
Bash2mp4
Video Downloader for Termux .
Stars: ✭ 68 (-96.16%)
Mutual labels:  downloader, youtube
Musicdownloader
Material design YouTube mp3/mp4 downloader
Stars: ✭ 70 (-96.04%)
Mutual labels:  downloader, youtube
Insideheartz Whatsapp Bot
A multipurpose whatsapp bot buillt on node.js
Stars: ✭ 102 (-94.23%)
Mutual labels:  downloader, youtube
Go Videos Ru
Каталог докладов, лекций и других видеоматериалов по Go
Stars: ✭ 64 (-96.38%)
Mutual labels:  videos, youtube
Robotics Coursework
🤖 Places where you can learn robotics (and stuff like that) online 🤖
Stars: ✭ 1,810 (+2.32%)
Mutual labels:  university, edx
Podify
Create podcasts from anything youtube-dl can handle
Stars: ✭ 111 (-93.73%)
Mutual labels:  downloader, youtube
Youtube Local
browser-based client for watching Youtube anonymously and with greater page performance
Stars: ✭ 112 (-93.67%)
Mutual labels:  videos, youtube
Hitomi Downloader
🍰 Desktop application to download images/videos/music/text from Hitomi.la and other sites, and more.
Stars: ✭ 1,154 (-34.77%)
Mutual labels:  downloader, youtube
Youtubeexplode.converter
Muxes and converts videos from YoutubeExplode
Stars: ✭ 68 (-96.16%)
Mutual labels:  downloader, youtube
Justforfunc
The repository for the YouTube series JustForFunc
Stars: ✭ 1,312 (-25.83%)
Mutual labels:  videos, youtube
Spotivy
🎼 Download music videos from Spotify playlists
Stars: ✭ 64 (-96.38%)
Mutual labels:  downloader, youtube
Av Converter
[av-converter.com] Audio and Video Converter, and YouTube downloader. Convert to MP3, MP4, AAC, FLAC, AC3, WAV, etc.
Stars: ✭ 97 (-94.52%)
Mutual labels:  downloader, youtube
Android Youtubemp3
Download videos as mp3 directly from Youtube Android App
Stars: ✭ 124 (-92.99%)
Mutual labels:  download-videos, youtube
Ytspotifydl
Youtube and Spotify music downloader with metadata.
Stars: ✭ 34 (-98.08%)
Mutual labels:  downloader, youtube
Youtubevideodownloader
Download videos from YouTube and many other video sites
Stars: ✭ 39 (-97.8%)
Mutual labels:  download-videos, downloader
Getsong
Download any song mp3 with no dependencies except ffmpeg
Stars: ✭ 102 (-94.23%)
Mutual labels:  downloader, youtube

Build Status Coverage Status Code Climate PyPI version

Description

edx-dl is a simple tool to download videos and lecture materials from Open edX-based sites. It requires a Python interpreter (>= 2.7) and very few other dependencies. It is platform independent, and should work fine under Unix (Linux, BSDs etc.), Windows or Mac OS X.

We strongly recommend that, if you don't already have a Python interpreter installed, that you install Python >= 3.6, if possible, since it is better in general.

Installation (recommended)

To install edx-dl run:

pip install edx-dl

Manual Installation

To install all the dependencies please do:

pip install -r requirements.txt

youtube-dl

One of the most important dependencies of edx-dl is youtube-dl. The installation step listed above already pulls in the most recent version of youtube-dl for you.

Unfortunately, since many Open edX sites store their videos on Youtube and Youtube changes their layout from time to time, it may be necessary to upgrade your copy of youtube-dl. There are many ways to proceed here, but the simplest is to simply use:

pip install --upgrade youtube-dl

Quick Start

Once you have installed everything, to use edx-dl.py, let it discover the courses in which you are enrolled, by issuing:

edx-dl -u [email protected] --list-courses

From there, choose the course you are interested in, copy its URL and use it in the following command:

edx-dl -u [email protected] COURSE_URL

replacing COURSE_URL with the URL that you just copied in the first step. It should look something like: https://courses.edx.org/courses/edX/DemoX.1/2014/info

Your downloaded videos will be placed in a new directory called Downloaded, inside your current directory, but you can also choose another destination with the -o argument.

To see all available options and a brief description of what they do, simply execute:

edx-dl --help

Important Note: To use sites other than <edx.org>, you have to specify the site along with the -x option. For example, -x stanford, if the course that you want to get is hosted on Stanford's site.

Docker container

You can run this application via Docker if you want. Just install docker and run

docker run --rm -it \
       -v "$(pwd)/edx/:/Downloaded" \
       strm/edx-dl -u <USER> -p <PASSWORD>

Reporting issues

Before reporting any issue please follow the steps below:

  1. Verify that you are running the latest version of all the programs (both of edx-dl and of youtube-dl). Use the following command if in doubt:

     pip install --upgrade edx-dl
    
  2. If you get an error like "YouTube said: Please sign in to view this video.", then we can't do much about it. You can try to pass your credentials to youtube-dl (see https://github.com/rg3/youtube-dl#authentication-options) with the use of edx-dl's option --youtube-dl-options. If it doesn't work, then you will have to tell edx-dl to ignore the download of that particular video with the option --ignore-errors.

  3. If the problem persists, feel free to open an issue in our bugtracker, please fill the issue template with as much information as possible.

Supported sites

These are the current supported sites:

This is the full list of sites powered by Open edX. Not all of them are supported at the moment, we welcome you to contribute support for them and send a pull request also via our issue tracker.

Authors

See the contributors to the project in the AUTHORS.md file. If you have contributed to the project, we would like to gladly credit you for your work. Just send us a note to be added to that list.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].