Giter Site home page Giter Site logo

coursera-dl / edx-dl Goto Github PK

View Code? Open in Web Editor NEW
1.9K 113.0 638.0 835 KB

A simple tool to download video lectures from edx.org (and other openedx sites)

License: GNU Lesser General Public License v3.0

Python 5.30% HTML 94.68% Dockerfile 0.02%
python edx download-videos youtube edx-dl university videos downloader stanford-online mitx

edx-dl's Introduction

Coursera Downloader

Build Status Build status Coverage Status Latest version on PyPI Code Climate

Introduction

Coursera is arguably the leader in massive open online courses (MOOC) with a selection of more than 300 classes from 62 different institutions as of February 2013. Generous contributions by educators and institutions are making excellent education available to many who could not afford it otherwise. There are even non-profits with "feet on the ground" in remote areas of the world who are helping spread the wealth (see the feedback below from Tunapanda).

This script makes it easier to batch download lecture resources (e.g., videos, ppt, etc) for Coursera classes. Given one or more class names and account credentials, it obtains week and class names from the lectures page, and then downloads the related materials into appropriately named files and directories.

Why is this helpful? A utility like wget can work, but has the following limitations:

  1. Video names have numbers in them, but this does not correspond to the actual order. Manually renaming them is a pain that is best left for computers.
  2. Using names from the syllabus page provides more informative names.
  3. Using wget in a for loop picks up extra videos which are not posted/linked, and these are sometimes duplicates.

Browser extensions like DownloadThemAll is another possibility, but coursera-dl provides more features such as appropriately named files.

This work was originally inspired in part by youtube-dl by which I've downloaded many other good videos such as those from Khan Academy.

Features

  • Support for all kinds of courses (i.e., "Old Platform"/time-based as well as "New Platform"/on-demand courses).
  • Intentionally detailed names, so that it will display and sort properly on most interfaces (e.g., VLC or MX Video on Android devices).
  • Regex-based section (week) and lecture name filters to download only certain resources.
  • File format extension filter to grab resource types you want.
  • Login credentials accepted on command-line or from .netrc file.
  • Default arguments loaded from coursera-dl.conf file.
  • Core functionality tested on Linux, Mac and Windows.

Disclaimer

coursera-dl is meant to be used only for your material that Coursera gives you access to download.

We do not encourage any use that violates their Terms Of Use. A relevant excerpt:

"[...] Coursera grants you a personal, non-exclusive, non-transferable license to access and use the Sites. You may download material from the Sites only for your own personal, non-commercial use. You may not otherwise copy, reproduce, retransmit, distribute, publish, commercially exploit or otherwise transfer any material, nor may you modify or create derivatives works of the material."

Installation instructions

coursera-dl requires Python 2 or Python 3 and a free Coursera account enrolled in the class of interest. (As of February of 2020, we test automatically the execution of the program with Python versions 2.7, Pypy, 3.6, 3.7, 3.8, and 3.9).

Note: We strongly recommend that you use a Python 3 interpreter (3.9 or later).

On any operating system, ensure that the Python executable location is added to your PATH environment variable and, once you have the dependencies installed (see next section), for a basic usage, you will need to invoke the script from the main directory of the project and prepend it with the word python. You can also use more advanced features of the program by looking at the "Running the script" section of this document.

Note: You must already have (manually) agreed to the Honor of Code of the particular courses that you want to use with coursera-dl.

Recommended installation method for all Operating Systems

From a command line (preferably, from a virtual environment), simply issue the command:

pip install coursera-dl

This will download the latest released version of the program from the Python Package Index (PyPI) along with all the necessary dependencies. At this point, you should be ready to start using it.

If this does not work, because your Python 2 version is too old (e.g. 2.7.5 on Ubuntu 14.4), try:

apt-get install python3 python3-pip
pip3 install coursera-dl

instead.

Note 1: We strongly recommend that you don't install the package globally on your machine (i.e., with root/administrator privileges), as the installed modules may conflict with other Python applications that you have installed in your system (or they can interfere with coursera-dl). Prefer to use the option --user to pip install, if you need can.

Note 2: As already mentioned, we strongly recommend that you use a new Python 3 interpreter (e.g., 3.9 or later), since Python 3 has better support for SSL/TLS (for secure connections) than earlier versions.
If you must use Python 2, be sure that you have at least Python 2.7.9 (later versions are OK).
Otherwise, you can still use coursera-dl, but you will have to install the extra package ndg-httpsclient, which may involve compilation (at least on Linux systems).

Alternative ways of installing missing dependencies

We strongly recommend that you consider installing Python packages with pip, as in it is the current preferred method, unless directed otherwise by one of the project members (for instance, when testing or debugging a new feature or using the source code directly from our git repository). If you are using pip, you can directly install all the dependencies from the requirements file using pip install -r requirements.txt.

Alternative installation method for Unix systems

We strongly recommend that you install coursera-dl and all its dependencies in a way that does not interfere with the rest of your Python installation. This is accomplished by the creation of a virtual environment, or "virtualenv".

For the initial setup, in a Unix-like operating system, please use the following steps (create/adapt first the directory /directory/where/I/want/my/courses):

cd /directory/where/I/want/my/courses
virtualenv my-coursera
cd my-coursera
source bin/activate
git clone https://github.com/coursera-dl/coursera-dl
cd coursera-dl
pip install -r requirements.txt
./coursera-dl ...

To further download new videos from your classes, simply perform:

cd /directory/where/I/want/my/courses/my-coursera
source bin/activate
cd coursera-dl
./coursera-dl ...

We are working on streamlining this whole process so that it is as simple as possible, but to support older versions of Python and to cope with Coursera disabling SSLv3, we have to take a few extra steps. In any case, it is highly recommended that you always install the latest version of the Python interpreter that you can.

ArchLinux

AUR package: coursera-dl

Installing dependencies on your own

Warning: This method is not recommended unless you have experience working with multiple Python environments.

You can use the pip program to install the dependencies on your own. They are all listed in the requirements.txt file (and the extra dependencies needed for development are listed in the requirements-dev.txt file).

To use this method, you would proceed as:

pip install -r requirements.txt
pip install -r requirements-dev.txt

The second line above should only be needed if you intend to help with development (and help is always welcome) or if a maintainer of the project asks you to install extra packages for debugging purposes.

Once again, before filing bug reports, if you installed the dependencies on your own, please check that the versions of your modules are at least those listed in the requirements.txt file (and, requirements-dev.txt file, if applicable).

Docker

If you prefer you can run this software inside Docker:

docker run --rm -it -v \
    "$(pwd):/courses" \
    courseradl/courseradl -u <USER> -p <PASSWORD>

Or using netrc file:

docker run --rm -it \
    -v "$(pwd):/courses" -v "$HOME/.netrc:/netrc" \
    courseradl/courseradl -n /netrc

The actual working dir for coursera-dl is /courses, all courses will be downloaded there if you don't specify otherwise.

Windows

python -m pip install coursera-dl

Be sure that the Python install path is added to the PATH system environment variables. This can be found in Control Panel > System > Advanced System Settings > Environment Variables.

Example:
C:\Python39\Scripts\;C:\Python39\;

Or if you have restricted installation permissions and you've installed Python under AppData, add this to your PATH.

Example:
C:\Users\<user>\AppData\Local\Programs\Python\Python39-32\Scripts;C:\Users\<user>\AppData\Local\Programs\Python\Python39-32;

Coursera-dl can now be run from commandline or powershell.

Create an account with Coursera

If you don't already have one, create a Coursera account and enroll in a class. See https://www.coursera.org/courses for the list of classes.

Running the script

Refer to coursera-dl --help for a complete, up-to-date reference on the runtime options supported by this utility.

Run the script to download the materials by providing your Coursera account credentials (e.g. email address and password or a ~/.netrc file), the class names, as well as any additional parameters:

    General:                     coursera-dl -u <user> -p <pass> modelthinking-004

    With CAUTH parameter:	 coursera-dl -ca 'some-ca-value-from-browser' modelthinking-004

If you don't want to type your password in command line as plain text, you can use the script without -p option. In this case you will be prompted for password once the script is run.

Here are some examples of how to invoke coursera-dl from the command line:

    Without -p field:            coursera-dl -u <user> modelthinking-004
    Multiple classes:            coursera-dl -u <user> -p <pass> saas historyofrock1-001 algo-2012-002
    Filter by section name:      coursera-dl -u <user> -p <pass> -sf "Chapter_Four" crypto-004
    Filter by lecture name:      coursera-dl -u <user> -p <pass> -lf "3.1_" ml-2012-002
    Download only ppt files:     coursera-dl -u <user> -p <pass> -f "ppt" qcomp-2012-001
    Use a ~/.netrc file:         coursera-dl -n -- matrix-001
    Get the preview classes:     coursera-dl -n -b ni-001
	Download videos at 720p:     coursera-dl -n --video-resolution 720p ni-001
    Specify download path:       coursera-dl -n --path=C:\Coursera\Classes\ comnetworks-002
    Display help:                coursera-dl --help

    Maintain a list of classes in a dir:
      Initialize:              mkdir -p CURRENT/{class1,class2,..classN}
      Update:                  coursera-dl -n --path CURRENT `\ls CURRENT`

Note: If your ls command is aliased to display a colorized output, you may experience problems. Be sure to escape the ls command (use \ls) to assure that no special characters get sent to the script.

Note that we do support the New Platform ("on-demand") courses.

By default, videos are downloaded at 540p resolution. For on-demand courses, the --video-resolution flag accepts 360p, 540p, and 720p values.

To download just the .txt and/or .srt subtitle files instead of the videos, use -ignore-formats mp4 --subtitle-language en or whatever format the videos are encoded in and desired languages for subtitles.

On *nix platforms, the use of a ~/.netrc file is a good alternative to specifying both your username (i.e., your email address) and password every time on the command line. To use it, simply add a line like the one below to a file named .netrc in your home directory (or the equivalent, if you are using Windows) with contents like:

    machine coursera-dl login <user> password <pass>

Create the file if it doesn't exist yet. From then on, you can switch from using -u and -p to simply call coursera-dl with the option -n instead. This is especially convenient, as typing usernames (email addresses) and passwords directly on the command line can get tiresome (even more if you happened to choose a "strong" password).

Alternatively, if you want to store your preferred parameters (which might also include your username and password), create a file named coursera-dl.conf where the script is supposed to be executed, with the following format:

    --username <user>
    --password <pass>
    --subtitle-language en,zh-CN|zh-TW
    --download-quizzes
    #--mathjax-cdn https://cdn.bootcss.com/mathjax/2.7.1/MathJax.js
    # more other parameters

Parameters which are specified in the file will be overriden if they are provided again on the commandline.

Note: In coursera-dl.conf, all the parameters should not be wrapped with quotes.

Resuming downloads

In default mode when you interrupt the download process by pressing CTRL+C, partially downloaded files will be deleted from your disk and you have to start the download process from the beginning. If your download was interrupted by something other than KeyboardInterrupt (CTRL+C) like sudden system crash, partially downloaded files will remain on your disk and the next time you start the process again, these files will be discarded from download list!, therefore it's your job to delete them manually before next start. For this reason we added an option called --resume which continues your downloads from where they stopped:

coursera-dl -u <user> -p <pass> --resume sdn1-001

This option can also be used with external downloaders:

coursera-dl --wget -u <user> -p <pass> --resume sdn1-001

Note 1: Some external downloaders use their own built-in resume feature which may not be compatible with others, so use them at your own risk.

Note 2: Remember that in resume mode, interrupted files WON'T be deleted from your disk.

NOTE: If your password contains punctuation, quotes or other "funny characters" (e.g., <, >, #, &, | and so on), then you may have to escape them from your shell. With bash or other Bourne-shell clones (and probably with many other shells) one of the better ways to do so is to enclose your password in single quotes, so that you don't run into problems. See issue #213 for more information.

Troubleshooting

If you have problems when downloading class materials, please try to see if one of the following actions solve your problem:

  • Make sure the class name you are using corresponds to the resource name used in the URL for that class: https://www.coursera.org/learn/<CLASS_NAME>/home/welcome

  • Have you tried to clean the cached cookies/credentials with the --clear-cache option?

  • Note that many courses (most, perhaps?) may remove the materials after a little while after the course is completed, while other courses may retain the materials up to a next session/offering of the same course (to avoid problems with academic dishonesty, apparently).

    In short, it is not guaranteed that you will be able to download after the course is finished and this is, unfortunately, nothing that we can help you with.

  • Make sure you have installed and/or updated all of your dependencies according to the requirements.txt file as described above.

  • One can export a Netscape-style cookies file with a browser extension (1, 2) and use it with the -c option. This comes in handy when the authentication via password is not working (the authentication process changes now and then).

  • If results show 0 sections, you most likely have provided invalid credentials (username and/or password in the command line or in your .netrc file or in your coursera-dl.conf file).

  • For courses that have not started yet, but have had a previous iteration sometimes a preview is available, containing all the classes from the last course. These files can be downloaded by passing the --preview parameter.

  • If you get an error like Could not find class: <CLASS_NAME>, then:

    • Verify that the name of the course is correct. Current class names in coursera are composed by a short course name e.g. class and the current version of the course (a number). For example, for a class named class, you would have to use class-001, class-002 etc.
    • Second, verify that you are enrolled in the course. You won't be able to access the course materials if you are not officially enrolled and agreed to the honor course via the website.
  • If:

    • You get an error when using -n to specify that you want to use a .netrc file and,

    • You want the script to use your default netrc file and,

    • You get a message saying coursera-dl: error: too few arguments

      Then you should specify -- as an argument after -n, that is, -n -- or change the order in which you pass the arguments to the script, so that the argument after -n begins with an hyphen (-). Otherwise, Python's argparse module will think that what you are passing is the name of the netrc file that you want to use. See issue #162.

  • If your password has spaces, don't forget to write it using quotes.

  • Have you installed the right project ?

    Warning: If you installed the script using PyPi (pip) please verify that you installed the correct project. We had to use a different name in pip because our original name was already taken. Remember to install it using:

        pip install coursera-dl
    

China issues

If you are from China and you're having problems downloading videos, adding "52.84.167.78 d3c33hcgiwev3.cloudfront.net" in the hosts file (/etc/hosts) and freshing DNS with "ipconfig/flushdns" may work (see https://github.com/googlehosts/hosts for more info).

Found 0 sections and 0 lectures on this page

First of all, make sure you are enrolled to the course you want to download.

Many old courses have already closed enrollment so often it's not an option. In this case, try downloading with --preview option. Some courses allow to download lecture materials without enrolling, but it's not common and is not guaranteed to work for every course.

Finally, you can download the videos if you have, at least, the index file that lists all the course materials. Maybe your friend who is enrolled could save that course page for you. In that case use the --process_local_page option.

Alternatively you may want to try this various browser extensions designed for this problem.

If none of the above works for you, there is nothing we can do.

Download timeouts

Coursera-dl supports external downloaders but note that they are only used to download materials after the syllabus has been parsed, e.g. videos, PDFs, some handouts and additional files (syllabus is always downloaded using the internal downloader). If you experience problems with downloading such materials, you may want to start using external downloader and configure its timeout values. For example, you can use aria2c downloader by passing --aria option:

coursera-dl -n --path . --aria2  <course-name>

And put this into aria2c's configuration file ~/.aria2/aria2.conf to reduce timeouts:

connect-timeout=2
timeout=2
bt-stop-timeout=1

Timeout configuration for internal downloader is not supported.

Windows: proxy support

If you're on Windows behind a proxy, set up the environment variables before running the script as follows:

set HTTP_PROXY=http://host:port
set HTTPS_PROXY=http://host:port

Related discussion: #205

Windows: Failed to create process

In C:\Users\<user>\AppData\Local\Programs\Python\Python39-32\Scripts or wherever Python installed (above is default for Windows) edit below file in idle: (right click on script name and select 'edit with idle in menu)

coursera-dl-script

from

#!c:\users\<user>\appdata\local\programs\python\python39-32\python.exe

to

#"!c:\users\<user>\appdata\local\programs\python\python39-32\python.exe"

(add quotes). This is a known pip bug.

Source: issue #500 StackOverflow

SSLError: [Errno 1] _ssl.c:504: error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure

This is a known error, please do not report about this error message! The problem is in YOUR environment. To fix it, do the following:

sudo apt-get install build-essential python-dev libssl-dev libffi-dev
pip install --user urllib3 pyasn1 ndg-httpsclient pyOpenSSL

If the error remains, try installing coursera-dl from github following this instruction: https://github.com/coursera-dl/coursera-dl#alternative-installation-method-for-unix-systems

If you still have the problem, please read the following issues for more ideas on how to fix it: #330 #377 #329

This is also worth reading: https://urllib3.readthedocs.io/en/latest/security.html#insecureplatformwarning

Alternative CDN for MathJax.js

When saving a course page, we enabled MathJax rendering for math equations, by injecting MathJax.js in the header. The script is using a cdn service provided by mathjax.org. However, that url is not accessible in some countries/regions, you can provide a --mathjax-cdn <MATHJAX_CDN> parameter to specify the MathJax.js file that is accessible in your region.

Reporting issues

Before reporting any issue please follow the steps below:

  1. Verify that you are running the latest version of the script, and the recommended versions of its dependencies, see them in the file requirements.txt. Use the following command if in doubt:

     pip install --upgrade coursera-dl
    
  2. If the problem persists, feel free to open an issue in our bugtracker, please fill the issue template with as much information as possible.

Filing an issue/Reporting a bug

When reporting bugs against coursera-dl, please don't forget to include enough information so that you can help us help you:

  • Is the problem happening with the latest version of the script?
  • What operating system are you using?
  • Do you have all the recommended versions of the modules? See them in the file requirements.txt.
  • What is the course that you are trying to access?
  • What is the precise command line that you are using (feel free to hide your username and password with asterisks, but leave all other information untouched).
  • What are the precise messages that you get? Please, use the --debug option before posting the messages as a bug report. Please, copy and paste them. Don't reword/paraphrase the messages.

Feedback

I enjoy getting feedback. Here are a few of the comments I've received:

  • "Thanks for the good job! Knowledge will flood the World a little more thanks to your script!"
    Guillaume V. 11/8/2012

  • "Just wanted to send you props for your Python script to download Coursera courses. I've been using it in Kenya for my non-profit to get online courses to places where internet is really expensive and unreliable. Mostly kids here can't afford high school, and downloading one of these classes by the usual means would cost more than the average family earns in one week. Thanks!"
    Jay L., Tunapanda 3/20/2013

  • "I am a big fan of Coursera and attend lots of different courses. Time constraints don't allow me to attend all the courses I want at the same time. I came across your script, and I am very happily using it! Great stuff and thanks for making this available on Github - well done!"
    William G. 2/18/2013

  • "This script is awesome! I was painstakingly downloading each and every video and ppt by hand -- looked into wget but ran into wildcard issues with HTML, and then.. I came across your script. Can't tell you how many hours you've just saved me :) If you're ever in Paris / Stockholm, it is absolutely mandatory that I buy you a beer :)"
    Razvan T. 11/26/2012

  • "Thanks a lot! :)"
    Viktor V. 24/04/2013

Contact

Please, post bugs and issues on github. Please, DON'T send support requests privately to the maintainers! We are quite swamped with day-to-day activities. If you have problems, PLEASE, file them on the issue tracker.

edx-dl's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

edx-dl's Issues

Retry the failed videos a few times (Videos are downloaded randomly and some are skipped!)

First of all thanks for such a great script it literally saved my life.

I've been having this problem that videos get downloaded randomly and even some are skipped, and it finishes before all videos are downloaded; so I have to run the script several (I guess it's been more than 20 times by now) times to download all the videos.

For information my internet connection speed is 512kbps and I've been downloading CS188.1x Artificial Intelligence and CHEM181x Food for Thought courses.

Crash after downloaing some videos.

While trying to download "SPU27x Science Cooking From Haute Cuisine to Soft Matter Science" in 720x1280, the program crashed with the following traceback:
[download] 100% of 59.66MiB in 01:35.89KiB/s ETA 00:00
[download] ed-x subtitles: /home/xl0/work/mooc/edx/edx-downloader/../courses/SPU27x Science Cooking From Haute Cuisine to Soft Matter Science/113-HARSPU27T313-G010900_100.srt
[youtube] Setting language
[youtube] rwECGaU-VUg: Downloading video webpage
[youtube] rwECGaU-VUg: Downloading video info webpage
[youtube] rwECGaU-VUg: Extracting video information
Traceback (most recent call last):
File "./edx-dl.py", line 382, in
main()
File "./edx-dl.py", line 373, in main
subs_filename = (match.group(1) or match.group(2)).decode('utf-8')[:-4]
AttributeError: 'NoneType' object has no attribute 'group'

Firsh time it downloaded 99 videos, so I thought it might be related to some field width, but on a second attempt it wen up to 114, so probably not the case.

unicode characters in course names

Using python 2.7, it fails when printing list of available courses. Workaround is

sys.stdout = codecs.getwriter(locale.getpreferredencoding())(sys.stdout)

just before that loop.

Stop committing things and decide the vision of the project

I would like to, in a very similar fashion of what Guido van Rossum once asked of the Python developers, to suggest that we take a moratorium on new commits and, first, decide what we think and agree is the role of the project.

In particular, I would like to see many things addressed:

  • The current documentation sucks. Badly. And I'm not only referring to the English parts of it. I am not a native speaker, even though some people have sporadically told me that my written English is good enough.
  • The current code smells bad. In many ways:
    • It, perhaps, tries too hard to handhold the users and doing good user interfaces is hard. Exceptionally hard. Especially without a graphical toolkit that would have already have solved most of the problems. And while not looking good, Python has already a dependency on Tk, which is satisfied by all Python installations, barring users that explicitly avoid tkinter. The non-interactive branch that I created was supposed to cut the silly, unsafe text UI which comes with the master branch, besides having more modularity (more about this on the next points).
    • On a more subjective note, the code clearly looks like the people writing it are amateur programmers. Well, I should not have said this, because I am also an amateur programmer, but each programming language has its own set of idioms and the current code follows none, differently from what I tried to accomplish on my non-interactive branch.
    • The current master branch, at least the last time I checked, didn't support sites other than edx.org. My branch supports edX-based sites in general and I have, personally, used it with Stanford's site (just for tests), 10gen/Mongodb.com (for real courses, where I completed 4 courses with certificates) and edx.org (just for tests, as I am mostly completing some coursera courses).
    • The current master branch has a lot of technical debt, which is something which I plainly acknowledge in my branch, with clear FIXME's or XXX's. This makes it easy for other people to jump in and see that the code needs improvement in a clear way. Unfortunately, such visibility is hindered by the fact that the code is in a non-default branch and github gives almost no visibility to it. I can't stress how much I think that technical debt is something that I try to avoid, even if I am swamped with it.
    • The current master branch has features that I don't have, but that's mostly because I thought that my branch would have received after @iemejia joined the project. My original intention with the code would be to use the time-tested practice of making a development branch, stop developing on the "stable" branch and, eventually, make the development branch the default branch. I guess that this was not communicated effectively by me. The rationale for this development model is made explicit in this post: http://nvie.com/posts/a-successful-git-branching-model/
    • The code currently lacks real testing. This impacts us. Badly. Especially when the sites that we are scraping change in some unpredictable ways. We need to add hooks to travis-ci and to coveralls, just like I do with coursera-dl.
    • I am not really sure if I believe that having an interactive way of doing things is so much appealing. Just to put things in perspective, in coursera-dl, where I have tried hard to make the community inclusive we have 1333 stars and 425 forks, which is, in some way, a measure of the success of the project---when I joined, the project had way fewer followers. With youtube-dl, there are 3296 stars and 703 forks. This edx-downloader project has 58 stars and 63 forks. Both coursera-dl and youtube-dl don't have an interactive mode. But they are successful projects.
    • Let me rephrase the point above, to avoid misinterpretations: I am not saying that having a text UI is detrimental to the project. On the contrary. But being functional and flexible by far exceeds a toy that doesn't fullfill the necessities of the users (say, supporting more sites, being reliable, tested) or doesn't fullfill the ease with which developers can add/fix features. And, yes, this last point includes adding a proper interactive mode. Again, if we are serious about usability and having an ease-to-use program, we should give a serious thought to use either curses or a graphical interface with tkinter. Otherwise, what we have is a joke. And the user interface may be a very good learning exercise for those that have not yet programmed such things.
    • Coupled with the point above, I think that we should try hard to make the program work like a library/python module. This makes testing easier, coverage analysis easier, static analysis easier, integration with other tools easier and, in fact, many other things easier.
    • After working in a project where there is more than one person involved, I have reached the conclusion that it is very important to have every committer know about every other changes that other people make to the code. In a regular git setting, this could be accomplished via hooks that e-mail people the diffs being made, so that everybody can be up-to-date with the project. Apparently, with github, the way to make other people know of the changes that other people are working on is to send pull requests. I would propose, therefore, that we don't use direct commits to the project, unless we have a pull request. Otherwise, we may get conflicts and people not knowing where the code stands.
  • This is a subjective point, but some programs, when invoked with no parameters, start with an interactive mode. This is, perhaps, appealing to people used to Windows. Other programs, when invoked with no parameters, just spit information on how it should be used. This is, perhaps, the Unix-mindset manifesting itself. The first approach doesn't seem to allow (unless one adopts the use of configuration files or use of batch files/scripts) the specification of standard parameters. This is annoying to some.

Well, I guess that I have more to say, but it is 4am here and I should really go to bed.

/cc: @rbrito

double check for video links

Script not working with renew edX course "CS-169.1x Software as a Service" (just started again).
But if change this line (182):

splitter = re.compile(b'data-streams=(?:&#34;|").*1.0[0]*:')

to this:

splitter = re.compile(b'data-youtube-id-1-0=(?:&#34;|")')

It's work perfect !

I wish the script can check first regexp, and if nothing found - check the second one.
Thanks.

HTTP Error 500: INTERNAL SERVER ERROR

Hi,

first and foremost, thanks for this very useful code!

I'm not sure this is a bug with the downloader, it looks to me more of a server bug/problem.
This morning (just after successfully downloading many videos from one of my courses) I tried to download more and got the 500 error. Complete output:

Traceback (most recent call last):
File "/home/davide/bin/edx-downloader/edx-dl.py", line 285, in
main()
File "/home/davide/bin/edx-downloader/edx-dl.py", line 178, in main
response = urlopen(request)
File "/usr/lib64/python3.3/urllib/request.py", line 160, in urlopen
return opener.open(url, data, timeout)
File "/usr/lib64/python3.3/urllib/request.py", line 479, in open
response = meth(req, response)
File "/usr/lib64/python3.3/urllib/request.py", line 591, in http_response
'http', request, response, code, msg, hdrs)
File "/usr/lib64/python3.3/urllib/request.py", line 517, in error
return self._call_chain(_args)
File "/usr/lib64/python3.3/urllib/request.py", line 451, in _call_chain
result = func(_args)
File "/usr/lib64/python3.3/urllib/request.py", line 599, in http_error_default
raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 500: INTERNAL SERVER ERROR

I also noticed that from any browser the login page freezes after I enter email and password, but if I navigate to edx on another tab after a while, I appear to actually BE logged in.

You think it would be possible to exploit this to have the downloader also work? Or do you have ways to notify Edx of their problem?

Thank you again

Davide

Check for errors when downloading videos

Sometimes i get errors when edx-dl downloads a video.

I think we should check for return code from youtube-dl and maybe restart the download, instead of just forgetting about that and going on...

Merge edx-downloader with coursera-dl or create mooc-dl

Hello. I'm probably not the first one to come up with this idea but to me it seems to be a very logical next step. There are two distinct projects that do basically the same but on different MOOC platforms. Support for these platforms sounds like a good code modularization challenge, it would also be a good programming style. coursera-dl looks more advanced in terms of different kind of optimizations like cookie management, caching and so on, so it's edx-downloader to merge with coursera-dl, not vise versa.

I would like to know what you think? Is this reasonable? If no, why? If yes, what steps can be taken to start moving in this direction?

Implement storing user/passwors via netrc

Like I already do with coursera-dl, it would be super hand, as we are trying to support many sites, to store the user credentials in only one standard place (e.g., in ~/.netrc), as I really have a hard time remembering my own passwords.

edX added a new "News" HTML "article" element

edX added a new "News" HTML "article" element to the dashboard and now the program fails to see which are the courses.

In the file "edx-dl.py " that can be solved by changing the line 54 from

for COURSE in COURSES :

to

for COURSE in COURSES [1:]:

And by the way, many thanks for the program!

Can't download subtitles

After downloading the first video. Some commits ago I was able to download all subtitles in the course but one. Now I can't download any of them.

Tested with 4d53e25

[youtube] Setting language
[youtube] YTGNNCmWqh0: Downloading webpage
[youtube] YTGNNCmWqh0: Downloading video info webpage
[youtube] YTGNNCmWqh0: Extracting video information
[download] Destination: Downloaded/8.01x Classical Mechanics/01-Walter Lewin 8.01x Intro Video.mp4
[download] 100% of 35.29MiB in 02:46.90KiB/s ETA 00:00
[info] Writing edX subtitles: Downloaded/8.01x Classical Mechanics/01-Walter Lewin 8.01x Intro Video.srt
Warning: edX subtitles (error:Not Found)
Traceback (most recent call last):
File "edx-dl.py", line 371, in
main()
File "edx-dl.py", line 353, in main
'wb+').write(subs_string.encode('utf-8'))

cannot run python edx-dl.py

First, thanks for developing this project. It will be very useful to me. Unfortunately I am unable to run python edx-dl.py . I have correctly installed youtube-dl and BeautifulSoup4, but I'm not sure what to do with edx-dl.py . I get a syntax error message when I try to run it, and it seems to refer to something in line 4 of the file. I have virtually no prior experience with python, so I really have no idea what the trouble might be.

Error downloading videos who are not in the chosen format

Many courses (e.g. 8.01x Classical Mechanics, SPU27x Science & Cooking. BE101x Behavioural Economics) have videos who are in different formats, when youtube-dl finds those videos it breaks, and those videos aren't downloaded.

IndexError: list index out of range

$ python edx-dl.py
Username:
Password:

Traceback (most recent call last):
File "edx-dl.py", line 390, in
main()
File "edx-dl.py", line 222, in main
data = soup.find_all('ul')[1]
IndexError: list index out of range

error when attempting to download

I am having difficulty downloading course videos, which seems to have something to do with youtube-dl. After choosing the videos I want to download, the script spends several minutes processing the URLs to download, but then I get the following error message:

'youtube-dl' is not recognized as an internal or external command, operable program or batch file.

I'm not sure what exactly is the problem because I have correctly installed youtube-dl and have successfully downloaded a video from YouTube before I installed edx-dl.py . What am I doing wrong?

error when launching edx-dl.py

Hello,
When i start edx-dl.py, i have the following issue:
File "edx-dl.py", line 4

^
SyntaxError: invalid syntax
Do you know why? what can i do to solve this?
Thanks for your feedback

IndexError: list index out of range

Hi Guys
First I would like to thank you for creating such a wonderful script,
actually you saved my precious time.

I tried to download the "CS50x Introduction to Computer Science I" course content
then I got into a issue, here is stack-trace

You can access 13 courses on edX
1 - CS169.1x Software as a Service -> Started
2 - CS169.1x Software as a Service -> Started
3 - CS169.2x Software as a Service -> Started
4 - CS184.1x Foundations of Computer Graphics -> Started
5 - CS188.1x Artificial Intelligence -> Started
6 - CS188.1x Artificial Intelligence -> Started
7 - CS191x Quantum Mechanics and Quantum Computation -> Started
8 - CS50x Introduction to Computer Science I -> Started
9 - 6.00x Introduction to Computer Science and Programming -> Started
10 - 6.00x Introduction to Computer Science and Programming -> Started
11 - 8.02x Electricity and Magnetism -> Started
12 - UT.2.01x Ideas of the 20th Century -> Not yet
13 - UT.3.01x Age of Globalization -> Not yet
Enter Course Number: 8
CS50x Introduction to Computer Science I has 12 weeks so far
1 - Download Week 0 videos
2 - Download Week 1 videos
3 - Download Week 2 videos
4 - Download Week 3 videos
5 - Download Week 4 videos
6 - Download Week 5 videos
7 - Download Week 6 videos
8 - Download Week 7 videos
9 - Download Week 8 videos
10 - Download Week 9 videos
11 - Download Week 10 videos
12 - Download Week 11 videos
13 - Download them all
Enter Your Choice: 13
Processing 'https://www.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_0/week0w/'...
Processing 'https://www.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_0/week0f/'...
.....
.....
.....
.....
.....
Processing 'https://www.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_10/week10m/'...
Processing 'https://www.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_11/week11m/'...
Traceback (most recent call last):
File "edx-dl.py", line 185, in
os.system('youtube-dl -F %s' % video_link[-1])
IndexError: list index out of range

Thanks

Invalid path for subtitles

Subtitles are being downloaded to the current user folder and not to the configured destination as videos are.

IndexError: list index out of range

Used Python 2.7.3, and the latest commit 2755642

Enter Course Number: 9
CS50x Introduction to Computer Science I has 12 weeks so far
1 - Download
Week 0
videos
2 - Download
Week 1
videos
3 - Download
Week 2
videos
4 - Download
Week 3
videos
5 - Download
Week 4
videos
6 - Download
Week 5
videos
7 - Download
Week 6
videos
8 - Download
Week 7
videos
9 - Download
Week 8
videos
10 - Download
Week 9
videos
11 - Download
Week 10
videos
12 - Download
Week 11
videos
13 - Download them all
Enter Your Choice: 13
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_0/week0w/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_0/week0f/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_0/pset0/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_0/shorts0/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_1/week1m/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_1/week1w/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_1/pset1/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_1/section1/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_1/shorts1/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_2/week2m/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_2/week2w/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_2/pset2/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_2/section2/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_2/shorts2/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_3/week3m/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_3/week3w/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_3/pset3/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_3/section3/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_3/shorts3/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_4/week4m/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_4/week4w/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_4/section4/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_4/shorts4/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_5/week5f/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_5/pset4/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_5/section5/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_5/shorts5/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_6/week6m/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_6/week6w/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_6/pset5/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_6/section6/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_6/shorts6/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_7/week7m/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_7/week7w/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_7/pset6/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_7/section7/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_7/shorts7/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_8/week8w/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_8/week8f/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_8/pset7/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_8/section8/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_8/shorts8/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_9/week9m/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_9/week9w/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_9/section9/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_9/shorts9/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_10/week10m/'...
Processing 'https://courses.edx.org/courses/HarvardX/CS50x/2012/courseware/Week_11/week11m/'...
Traceback (most recent call last):
File "edx-dl.py", line 191, in
os.system('youtube-dl -F %s' % video_link[-1])
IndexError: list index out of range

Encoding error

I was getting the following error when downloading the subtitles for some edx videos.

Traceback (most recent call last):
File "edx-dl.py", line 380, in
main()
File "edx-dl.py", line 375, in main
open(os.path.join(os.getcwd(), subs_filename)+'.srt', 'w+').write(subs_string)
UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in position 868: ordinal not in range(128)

The following is due to not encoding the subtitles downloaded before writing to file. Solved the issue by calling the encode option: so line 375 now looks like this:

open(os.path.join(os.getcwd(), subs_filename)+'.srt', 'w+').write(subs_string.encode('utf-8'))

video download problem with ER22x

I get the following error when trying to download ER22x materials:

Traceback (most recent call last):
File "edx-dl.py", line 185, in
os.system('youtube-dl -F %s' % video_link[-1])
IndexError: list index out of range

System has python2.7.3

Access to 0 courses on edX

I have been downloading videos using edx-downloader without any problems. It used to show that I had access to 10 courses.

But, suddenly I started getting this message: "You can access 0 courses on edX"

Therefore, I can't download any videos now.

'charmap' codec can't encode character u'\u2013' in position 28: character maps to <undefined>

You can access 19 courses
1 - CS-184.1x Foundations of Computer Graphics -> Started
2 - CS.169.2x Software as a Service, Part 2 (rev Fall 2013) -> Started
3 - CS188.1x Artificial Intelligence -> Started
4 - CS169.1x Engineering Software as a Service -> Not yet
5 - CS169.2x Engineering Software as a Service, Part 2 -> Not yet
6 - AE1110x Introduction to Aeronautical Engineering -> Not yet
7 - BIO465x Neuronal Dynamics -> Started
8 - AMRx Autonomous Mobile Robots -> Not yet
9 - CS50x Introduction to Computer Science -> Started
10 - 16.101x Introduction to Aerodynamics -> Started
11 - 16.110x Flight Vehicle Aerodynamics -> Not yet
12 - 2.03x Dynamics -> Started
13 - 6.00.1x Introduction to Computer Science and Programming -> Started
14 - 6.002x Circuits and Electronics -> Started
15 - ELEC301x Discrete Time Signals and Systems -> Not yet
16 - 20220332X Principles of Electric Circuits: Part 1 -> Started
17 - 20220332_2x Principles of Electric Circuits: Part 2 -> Not yet
Traceback (most recent call last):
File "C:\Python27\edx-downloader\edx-dl.py", line 403, in
main()
File "C:\Python27\edx-downloader\edx-dl.py", line 271, in main
print('%d - %s -> %s' % (c, course[0], course[2]))
File "C:\Python27\lib\encodings\cp850.py", line 12, in encode
return codecs.charmap_encode(input,errors,encoding_map)
UnicodeEncodeError: 'charmap' codec can't encode character u'\u2013' in position
28: character maps to

two different errors for the same course

Hi ! :)

I saw your work on Github and I'm so amazed of you high programming
skills , so I just need some help from you

when I use edx-downloader it gives me the following ,I used Git Bash
and it gave me errors and I couldn't solve :
http://i.imgur.com/fjUwvnI.jpg

when I used the normal Windows cmd I've got this :
http://i.imgur.com/YjJP4Cz.jpg

BUT I tried to download another course from edx and it worked (to be
more specific it worked for : "2.03x Dynamics & ANTH_207x Intro to
Human Evolution "

so I think there's something wrong with 16.101x Intro to Aerodynamics
!!!!! something I don't know ! there're two different errors ( as I
see ) from cmd and Git Bash for the same course ..

I Hope you can help me :)

btw : I don't have any good experience in programming :v

Error with encoding?

I got an encoding error before downloading starts.
The course link is https://www.edx.org/courses/MITx/6.00x/2013_Spring/ and the error message is as follows:

You can access 1 courses on edX
1 - 6.00x Introduction to Computer Science and Programming -> Started
Enter Course Number: 1
Traceback (most recent call last):
  File "edx-dl.py", line 146, in <module>
    soup = BeautifulSoup(courseware)
  File "/usr/local/lib/python2.7/dist-packages/beautifulsoup4-4.1.3-py2.7.egg/bs4/__init__.py", line 172, in __init__
    self._feed()
  File "/usr/local/lib/python2.7/dist-packages/beautifulsoup4-4.1.3-py2.7.egg/bs4/__init__.py", line 185, in _feed
    self.builder.feed(self.markup)
  File "/usr/local/lib/python2.7/dist-packages/beautifulsoup4-4.1.3-py2.7.egg/bs4/builder/_lxml.py", line 195, in feed
    self.parser.close()
  File "parser.pxi", line 1187, in lxml.etree._FeedParser.close (src/lxml/lxml.etree.c:88786)
  File "parsertarget.pxi", line 142, in lxml.etree._TargetParserContext._handleParseResult (src/lxml/lxml.etree.c:98085)
  File "parsertarget.pxi", line 130, in lxml.etree._TargetParserContext._handleParseResult (src/lxml/lxml.etree.c:97909)
  File "lxml.etree.pyx", line 294, in lxml.etree._ExceptionContext._raise_if_stored (src/lxml/lxml.etree.c:9071)
  File "saxparser.pxi", line 259, in lxml.etree._handleSaxData (src/lxml/lxml.etree.c:94081)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xe8 in position 2: invalid continuation byte

Syntax error

I've just redownloaded the current version to test a fixed issue, but this error appeared.

Download subtitles (y/n)? y
[download] Saving videos into: Downloaded
[youtube] Setting language
[youtube] YTGNNCmWqh0: Downloading webpage
[youtube] YTGNNCmWqh0: Downloading video info webpage
[youtube] YTGNNCmWqh0: Extracting video information
[download] Destination: Downloaded/8.01x Classical Mechanics/01-Walter Lewin 8.01x Intro Video.mp4
[download] 100% of 35.29MiB in 00:59.54KiB/s ETA 00:00
Warning: edX subtitles (error:Not Found)
[youtube] Setting language
[youtube] hHLFFaZiCbk: Downloading webpage
[youtube] hHLFFaZiCbk: Downloading video info webpage
[youtube] hHLFFaZiCbk: Extracting video information
[download] Destination: Downloaded/8.01x Classical Mechanics/02-MITx - Classical Mechanics (Physics 1) - 8.01x About Video.mp4
[download] 100% of 13.21MiB in 00:14.31KiB/s ETA 00:00
Traceback (most recent call last):
File "edx-dl.py", line 373, in
main()
File "edx-dl.py", line 364, in main
subs_filename.append('.srt')
AttributeError: 'unicode' object has no attribute 'append'

I'm a C programmer and I don't know Python, but is there something like a Python compiler or Python syntax checker that can catch this kind of errors? I suppose this is just a syntax error.

URLOPEN failed.

Edx-dl is not working for me. Its giving the following log. Thanks

c:\Python33\youtube-dl-master>python edx-dl.py ve****@gmail.com ****
Traceback (most recent call last):
File "edx-dl.py", line 99, in
response = urlopen(request)
File "C:\Python33\lib\urllib\request.py", line 156, in urlopen
return opener.open(url, data, timeout)
File "C:\Python33\lib\urllib\request.py", line 475, in open
response = meth(req, response)
File "C:\Python33\lib\urllib\request.py", line 587, in http_response
'http', request, response, code, msg, hdrs)
File "C:\Python33\lib\urllib\request.py", line 513, in error
return self._call_chain(_args)
File "C:\Python33\lib\urllib\request.py", line 447, in _call_chain
result = func(_args)
File "C:\Python33\lib\urllib\request.py", line 595, in http_error_default
raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 404: Not Found

edx-issue

Just letting you know about this feature in edX

I have writed edX to make such a button to download subtitles form. And maybe they did it or it is made by the course maintainers. The course is "RiceX: PHYS102x Electricity & Magnetism"

screenshot

failure in uptodate Debian with python 2.7

Strangely, it stopped working for me a while ago with this error.

[download] Saving videos into: ./Downloaded/
Traceback (most recent call last):
File "edx-dl.py", line 387, in
main()
File "edx-dl.py", line 348, in main
popen_youtube = Popen(cmd, stdout=PIPE, stderr=PIPE)
File "/usr/lib/python2.7/subprocess.py", line 679, in init
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1259, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory

Not downloading videos and subtitles hosted on S3 Amazon (AWS)

Works fine with youtube vídeos.
But didn't find and didn't download videos and subtitles hosted on amazon.

For now, I can right-click on the videos and download them manually.
But I'm more interested on the subtitles.

Is there a default url for the subs that I can make with the video url at hand?

TIA

edit: fixed some typos in my message.

Directory names

Hi,

In windows, I cannot download the course
Stat2.1x Introduction to Statistics: Descriptive Statistics
because edx-downloader tries to create a directory name that is invalid (because it includes ':')

I have already submitted this issue some time ago, but it doesn't seem to have been addressed?

Certificate verify failed due to youtube-dl

On running the script,it throws an error:

tested with; 07ddc8f

[youtube] Setting language
WARNING: unable to set language: urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:550)

[youtube] LvaTokhYnDw: Downloading webpage
ERROR: Unable to download webpage: urlopen error [SSL:CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:550)

capture

Video Quality Option

Recommend adding an option to download the best available video quality which is now apparently the default behavior for youtube-dl. I modified my local copy of the code to simply bypass the quality option by commenting out the "-f ..." option on the youtube-dl command line.

This should reduce the number of download errors reported.

Broken

Maybe a page change?

Traceback (most recent call last):
File "edx-dl.py", line 147, in
data = soup.section.section.div.div.nav
AttributeError: 'NoneType' object has no attribute 'div'

Week Subdirectories

Suggested enhancement:

Add the option to save downloads into folders by week. The main benefit is improved organization that matches the course schedule.

Not critical of course, but would be helpful.

Thanks for this great tool!

Invalid os.path Results for AbsPath in cygwin

When using edx-dl under cygwin on windows, downloading subtitles while using an absolute destination path breaks, with a screwball path at what is currently line 385:

open(os.path.join(os.getcwd(), subs_filename),
'wb+').write(subs_string.encode('utf-8'))

The path it's trying to write to is a concatenation of the cwd and the absolute path target_dir/filename.srt - so something like this:

/c/Users/mitch/home/src/edx-downloader/q:/edu/class/videoname.srt

Basically, abspath is failing to recognize "q:/edu" as the beginning of an absolute path, and is returning the mess above.

If I had more time to debug, I would. There may be some interaction between cygwin/python/windows as well... My memory is that passing a cygwin unix-style path (e.g. /q/edu/class) as the target_dir broke some other part of the script, so I had to use the drive letter version.

Admittedly, this is an upstream bug, and also a bit of a corner case. But for anyone using windows & edx-dl, it's real. I just hacked edx-dl to work for my case, by deleting the call to os.path.join. A real fix would probably include testing subs_filename for leading drive letters.

More OpenX Course Websites

More websites use the platform of edX now, such as XuetangX, a Chinese website.
Should we also support them? How can we integrate them into one downloader?
Any idea?

urllib2.HTTPError: HTTP Error 404: Not Found

When I try to login I get the following error

Modern Computer@ModernComputer ~/edx-downloader
$ python edx-dl.py [email protected] password
Traceback (most recent call last):
File "edx-dl.py", line 38, in
response = urllib2.urlopen(request)
File "/usr/lib/python2.7/urllib2.py", line 126, in urlopen
return _opener.open(url, data, timeout)
File "/usr/lib/python2.7/urllib2.py", line 406, in open
response = meth(req, response)
File "/usr/lib/python2.7/urllib2.py", line 519, in http_response
'http', request, response, code, msg, hdrs)
File "/usr/lib/python2.7/urllib2.py", line 444, in error
return self._call_chain(_args)
File "/usr/lib/python2.7/urllib2.py", line 378, in _call_chain
result = func(_args)
File "/usr/lib/python2.7/urllib2.py", line 527, in http_error_default
raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 404: Not Found

404 error on launch

Just downloaded all the dependencies, cd into the directory, and ran the file

richard$ python ./edx-dl.py
Traceback (most recent call last):
File "./edx-dl.py", line 38, in
response = urllib2.urlopen(request)
File "/Applications/Canopy.app/appdata/canopy-1.0.0.1160.macosx-x86/Canopy.app/Contents/lib/python2.7/urllib2.py", line 126, in urlopen
return _opener.open(url, data, timeout)
File "/Applications/Canopy.app/appdata/canopy-1.0.0.1160.macosx-x86/Canopy.app/Contents/lib/python2.7/urllib2.py", line 406, in open
response = meth(req, response)
File "/Applications/Canopy.app/appdata/canopy-1.0.0.1160.macosx-x86/Canopy.app/Contents/lib/python2.7/urllib2.py", line 519, in http_response
'http', request, response, code, msg, hdrs)
File "/Applications/Canopy.app/appdata/canopy-1.0.0.1160.macosx-x86/Canopy.app/Contents/lib/python2.7/urllib2.py", line 444, in error
return self._call_chain(_args)
File "/Applications/Canopy.app/appdata/canopy-1.0.0.1160.macosx-x86/Canopy.app/Contents/lib/python2.7/urllib2.py", line 378, in _call_chain
result = func(_args)
File "/Applications/Canopy.app/appdata/canopy-1.0.0.1160.macosx-x86/Canopy.app/Contents/lib/python2.7/urllib2.py", line 527, in http_error_default
raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
urllib2.HTTPError: HTTP Error 404: Not Found

Failing when accessing archived course: BE101x Behavioural Economics in Action

This course is archived.

I'm receiving the following error when I select the course from the course list in edx-dl.py:

Traceback (most recent call last):
File "edx-dl.py", line 377, in
main()
File "edx-dl.py", line 257, in main
w.ul.find_all('a')]) for w in WEEKS]
AttributeError: 'NoneType' object has no attribute 'string'

TypeError: decode() takes no keyword arguments

$ python edx-dl.py [email protected] 123456
Traceback (most recent call last):
File "edx-dl.py", line 39, in
resp = json.loads(response.read().decode(encoding = 'utf-8'))
TypeError: decode() takes no keyword arguments

Environment:
Ubuntu 10.04
Python 2.6.5

Fix:
Change line 39 to:
resp = json.loads(response.read().decode('utf-8'))

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.