-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathbackend_design.txt
31 lines (23 loc) · 1010 Bytes
/
backend_design.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
The backend will be a Python Flask server with the following key components:
1. Flask app setup:
- Import necessary libraries (Flask, FFmpeg-python, os, etc.)
- Initialize Flask app
2. File upload route (/upload):
- Accept POST requests with video file
- Save uploaded file temporarily
- Return a unique job ID
3. Conversion route (/convert):
- Accept POST requests with job ID, desired speed, and resolution
- Use FFmpeg-python to convert the video:
- Change format to MP4
- Adjust playback speed
- Resize to selected resolution
- Save converted video
- Return download link
4. Download route (/download/<job_id>):
- Serve the converted video file
5. Status route (/status/<job_id>):
- Return current status of conversion job
6. Cleanup function:
- Periodically remove old temporary and converted files
The server will use FFmpeg-python for video processing, which allows for easy manipulation of video properties like format, speed, and resolution.