Spaces:
Running
Running
main
Browse files- requirements.txt +4 -0
- ttv.py +1 -1
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
diffusers
|
2 |
+
torch
|
3 |
+
transformers
|
4 |
+
numpy
|
ttv.py
CHANGED
@@ -13,7 +13,7 @@ def generate_video(prompt, negative_prompt):
|
|
13 |
width=704,
|
14 |
height=480,
|
15 |
num_frames=161,
|
16 |
-
num_inference_steps=50,
|
17 |
).frames[0]
|
18 |
|
19 |
output_path = f"output_{len(os.listdir('.'))}.mp4"
|
|
|
13 |
width=704,
|
14 |
height=480,
|
15 |
num_frames=161,
|
16 |
+
num_inference_steps=50,
|
17 |
).frames[0]
|
18 |
|
19 |
output_path = f"output_{len(os.listdir('.'))}.mp4"
|