Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
|
@@ -54,13 +54,13 @@ def run_generate_base_video(
|
|
| 54 |
}
|
| 55 |
|
| 56 |
if generation_mode == "Narrativa (Múltiplos Prompts)":
|
| 57 |
-
video_path, tensor_path, final_seed = video_generation_service.
|
| 58 |
prompt=prompt, negative_prompt=neg_prompt, height=height, width=width, duration=duration,
|
| 59 |
seed=used_seed, conditions_itens=initial_image_conditions,
|
| 60 |
ltx_configs_override=ltx_configs,
|
| 61 |
)
|
| 62 |
else:
|
| 63 |
-
video_path, tensor_path, final_seed = video_generation_service.
|
| 64 |
prompt=prompt, negative_prompt=neg_prompt, height=height, width=width, duration=duration,
|
| 65 |
seed=used_seed, conditions_itens=initial_image_conditions,
|
| 66 |
ltx_configs_override=ltx_configs,
|
|
|
|
| 54 |
}
|
| 55 |
|
| 56 |
if generation_mode == "Narrativa (Múltiplos Prompts)":
|
| 57 |
+
video_path, tensor_path, final_seed = video_generation_service.generate_low(
|
| 58 |
prompt=prompt, negative_prompt=neg_prompt, height=height, width=width, duration=duration,
|
| 59 |
seed=used_seed, conditions_itens=initial_image_conditions,
|
| 60 |
ltx_configs_override=ltx_configs,
|
| 61 |
)
|
| 62 |
else:
|
| 63 |
+
video_path, tensor_path, final_seed = video_generation_service.generate_low(
|
| 64 |
prompt=prompt, negative_prompt=neg_prompt, height=height, width=width, duration=duration,
|
| 65 |
seed=used_seed, conditions_itens=initial_image_conditions,
|
| 66 |
ltx_configs_override=ltx_configs,
|