Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -116,6 +116,7 @@ def infer(video_in,interpolation,fps_output):
|
|
116 |
os.rename(img, f"{frame}_to_{next_frame}_{j}.jpg")
|
117 |
result_frames.append(f"{frame}_to_{next_frame}_{j}.jpg")
|
118 |
print("frames " + str(idx) + " & " + str(idx+1) + "/" + str(n_frame) + ": done;")
|
|
|
119 |
|
120 |
final_vid = create_video(result_frames, fps_output, "interpolated")
|
121 |
|
|
|
116 |
os.rename(img, f"{frame}_to_{next_frame}_{j}.jpg")
|
117 |
result_frames.append(f"{frame}_to_{next_frame}_{j}.jpg")
|
118 |
print("frames " + str(idx) + " & " + str(idx+1) + "/" + str(n_frame) + ": done;")
|
119 |
+
print(f"CURRENT FRAMES: {result_frames}")
|
120 |
|
121 |
final_vid = create_video(result_frames, fps_output, "interpolated")
|
122 |
|