How to upload a video to django ?

If you want to process the video before it’s saved, see the docs at File Uploads | Django documentation | Django , especially the section on Upload Handlers.

Note: If you’re not going to save it, then you do not want to make a model for this, and you don’t want to create the form as a model form. Create a regular form for this and process the file in a handler.