Giter Site home page Giter Site logo

Comments (3)

sdht0 avatar sdht0 commented on August 26, 2024

Hi Daniel
Thanks for the bug report. There seems to be error in downloading srt and txt files. For the time being, please download only the video files. I will update the code with corrections shortly.

from coursera-downloader.

alexf101 avatar alexf101 commented on August 26, 2024

Hi Daniel/Siddhartha,

I guess I should post a fork, but a quickfix is to wrap lines causing error in a try/except loop, replacing the desired value with a placeholder. e.g., the following worked for me:

    try:
        total_size = int(response.info().getheader('Content-Length').strip())
    except:
        print "Content-Length header not found... creating arbitrary total_size of 100"
        total_size = 100 # arbitary value

While not a 'solution', this gets it working, and since the bug appears to be related only to printing messages about the download size, it isn't a major problem.

I also changed:

        try:
            speed = bytes_so_far / (1024 * (time.time() - start_time))
        except ZeroDivisionError: # for some reason this occured once after downloading file
            speed = 100 # an arbitrary non-zero value

from coursera-downloader.

sdht0 avatar sdht0 commented on August 26, 2024

Hi alexf101 and moraesdam,

Very sorry for no response all this while. Only just got the opportunity to address the issue. The error are being caused due to a missing content length in the header. I've committed code which bypasses the header. Please check it out.

Cheers :)

from coursera-downloader.

Related Issues (5)

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.