jschwab21 commited on
Commit
ccaa938
·
verified ·
1 Parent(s): 480d4ef

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 shutil
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
- shutil.copyfileobj(file.file, f)
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):