Update requirements.txt
Browse files- requirements.txt +16 -8
requirements.txt
CHANGED
|
@@ -1,9 +1,17 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
numpy
|
| 8 |
-
imageio>=2.34.0
|
| 9 |
imageio-ffmpeg>=0.4.9
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core image/video utilities
|
| 2 |
+
numpy>=1.24
|
| 3 |
+
Pillow>=10.0
|
| 4 |
+
|
| 5 |
+
# WebM (and optional gif via imageio) encoding
|
| 6 |
+
imageio>=2.34
|
|
|
|
|
|
|
| 7 |
imageio-ffmpeg>=0.4.9
|
| 8 |
+
|
| 9 |
+
# ZIP handling is stdlib, no dependency.
|
| 10 |
+
|
| 11 |
+
# If you're using a diffusers-based video model (common for LTX-style repos),
|
| 12 |
+
# keep these. If your base image already includes them, it's still fine.
|
| 13 |
+
torch>=2.1
|
| 14 |
+
diffusers>=0.30
|
| 15 |
+
transformers>=4.42
|
| 16 |
+
accelerate>=0.33
|
| 17 |
+
safetensors>=0.4
|