Beginner's Guide: Running Video Enhancement Workflow
This guide will help you set up and run the video enhancement workflow
on your Windows 11 HP laptop.
============================================
STEP 1: Get Ready
============================================
1. Create a folder on your Desktop called VideoProject.
2. Place inside this folder:
- Your video file (e.g., myvideo.mp4)
- The Python script (video_enhance.py)
- The batch file (run_video_enhance.bat)
============================================
STEP 2: Install Python
============================================
1. Download Python 3.x from: [Link]
2. Run the installer:
- Check "Add Python to PATH"
- If prompted, click "Disable Path Length Limit" (recommended)
3. Finish installation.
============================================
STEP 3: Install FFmpeg
============================================
1. Download Windows build from: [Link]
2. Extract to C:\ffmpeg
3. Add FFmpeg to PATH:
- Right-click Start Menu → System → About → Advanced system settings
- Click Environment Variables → under System variables select Path → Edit
- Add new entry: C:\ffmpeg\bin → OK
============================================
STEP 4: Install Required Libraries
============================================
1. Open Command Prompt.
2. Run:
pip install moviepy opencv-python
============================================
STEP 5: Run Your Batch File
============================================
1. Open VideoProject folder.