Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -48,6 +48,7 @@ def upscale_image(input_image, output_image, mname):
|
|
48 |
# Gradio interface
|
49 |
def video_upscaling_interface(input_text, model_name, progress=gr.Progress()):
|
50 |
if input_text:
|
|
|
51 |
temp_dir = tempfile.mkdtemp()
|
52 |
input_video_path = f"{temp_dir}/input_video"
|
53 |
output_video_path = f"{temp_dir}/output_video.mp4"
|
|
|
48 |
# Gradio interface
|
49 |
def video_upscaling_interface(input_text, model_name, progress=gr.Progress()):
|
50 |
if input_text:
|
51 |
+
progress(0, desc="Converting the video...")
|
52 |
temp_dir = tempfile.mkdtemp()
|
53 |
input_video_path = f"{temp_dir}/input_video"
|
54 |
output_video_path = f"{temp_dir}/output_video.mp4"
|