[Django]-How to upload a movie file in Django?

3👍

Django itself handles large files uploads quite well (the whole file is not loaded to memory since 1.0, see http://code.djangoproject.com/ticket/2070).

But django usually sits behind web server and there is often a limit over request body. So Web server config should be probably adjusted (if you are using apache, look at http://httpd.apache.org/docs/2.2/mod/core.html#limitrequestbody ).

0👍

There is this called django-video. I haven’t tried it though. I have used django-basic-apps
which can handle video, music and image uploads.

👤darren

Leave a comment