Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ from video_processing import process_video
|
|
4 |
from gradio.themes.base import Base
|
5 |
from gradio.themes.utils import colors, fonts, sizes
|
6 |
from typing import Iterable
|
7 |
-
import
|
8 |
|
9 |
class CustomTheme(Base):
|
10 |
def __init__(
|
@@ -54,7 +54,7 @@ def save_uploaded_file(file):
|
|
54 |
os.makedirs(upload_dir, exist_ok=True)
|
55 |
file_path = os.path.join(upload_dir, file.name)
|
56 |
with open(file_path, "wb") as f:
|
57 |
-
|
58 |
return file_path
|
59 |
|
60 |
def display_results(video_url, video_file, description):
|
|
|
4 |
from gradio.themes.base import Base
|
5 |
from gradio.themes.utils import colors, fonts, sizes
|
6 |
from typing import Iterable
|
7 |
+
import os
|
8 |
|
9 |
class CustomTheme(Base):
|
10 |
def __init__(
|
|
|
54 |
os.makedirs(upload_dir, exist_ok=True)
|
55 |
file_path = os.path.join(upload_dir, file.name)
|
56 |
with open(file_path, "wb") as f:
|
57 |
+
f.write(file.getvalue()) # Write the content directly
|
58 |
return file_path
|
59 |
|
60 |
def display_results(video_url, video_file, description):
|