Muhammad Taqi Raza
commited on
Commit
·
30a18a6
1
Parent(s):
ff7cbd6
string issue
Browse files- gradio_app.py +1 -1
gradio_app.py
CHANGED
@@ -292,7 +292,7 @@ def inference(video_path, num_frames, fps, target_pose, mode):
|
|
292 |
"--infer_with_mask",
|
293 |
"--pool_style", "max",
|
294 |
"--seed", "43",
|
295 |
-
"--fps", fps
|
296 |
]
|
297 |
|
298 |
result = subprocess.run(command, capture_output=True, text=True)
|
|
|
292 |
"--infer_with_mask",
|
293 |
"--pool_style", "max",
|
294 |
"--seed", "43",
|
295 |
+
"--fps", str(fps)
|
296 |
]
|
297 |
|
298 |
result = subprocess.run(command, capture_output=True, text=True)
|