Update deformes4D_engine.py
Browse files- deformes4D_engine.py +1 -1
deformes4D_engine.py
CHANGED
|
@@ -327,7 +327,7 @@ class Deformes4DEngine:
|
|
| 327 |
|
| 328 |
def _generate_latent_tensor_internal(self, conditioning_items, ltx_params, target_resolution, total_frames_to_generate):
|
| 329 |
kwargs = {
|
| 330 |
-
**ltx_params, 'width': target_resolution[
|
| 331 |
'video_total_frames': total_frames_to_generate, 'video_fps': 24,
|
| 332 |
'current_fragment_index': int(time.time()), 'conditioning_items_data': conditioning_items
|
| 333 |
}
|
|
|
|
| 327 |
|
| 328 |
def _generate_latent_tensor_internal(self, conditioning_items, ltx_params, target_resolution, total_frames_to_generate):
|
| 329 |
kwargs = {
|
| 330 |
+
**ltx_params, 'width': target_resolution[0], 'height': target_resolution[1],
|
| 331 |
'video_total_frames': total_frames_to_generate, 'video_fps': 24,
|
| 332 |
'current_fragment_index': int(time.time()), 'conditioning_items_data': conditioning_items
|
| 333 |
}
|