- movies/: 3.4GB (video files - expected)
- venv/: 2.0GB (virtual environment - can be optimized)
These packages are installed but NOT in requirements.txt and NOT used in code:
transformers(115MB) - Not usedopencv-python(179MB) - Not used (was for old NSFW detection)sympy(74MB) - Not usedonnxruntime(53MB) - Not usedyt-dlp(25MB) - Not used
To remove:
source venv/bin/activate
pip uninstall transformers opencv-python opencv-python-headless sympy onnxruntime yt-dlp -yYou're already using CPU-only PyTorch (2.9.1+cpu), which is optimal.
After cleaning videos, you can:
- Delete original videos (keep only cleaned versions)
- Move videos to external storage
- Use symbolic links if videos are elsewhere
Run the cleanup script:
./cleanup_space.sh-
Remove unused packages (saves ~500MB):
source venv/bin/activate pip uninstall transformers opencv-python opencv-python-headless sympy onnxruntime yt-dlp -y -
Move processed videos (saves 1.7GB if you delete originals):
- Keep only
*_cleaned.mp4files - Delete original videos after verification
- Keep only
-
Total potential savings: ~2.2GB (from 5.3GB to ~3.1GB)