This project is a Django-based application that allows you to upload video chunks, combine them into complete videos, and retrieve the complete videos. It can be used to handle large video uploads by breaking them into smaller chunks.
- Upload video chunks.
- Combine uploaded chunks into a complete video.
- Retrieve complete videos.
Getting Started
These instructions will help you set up and run the project on your local machine.
- Python
- Django
- Django Rest Framework
git clone https://github.com/olatunde2/new-task.git
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver
127.0.0.1:8000/
127.0.0.1:8000/redoc/
URL: /combine_video/
Method: POST
Description: Combines video chunks into a complete video and saves it to the database.
URL: /videos_all/
Method: GET
Description: Retrieves a list of all videos stored in the database.
URL: /complete_video/str:session_id/
Method: GET
Description: Retrieves the complete video based on the session ID.