Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,6 @@ import uuid
|
|
7 |
import os
|
8 |
import plotly.graph_objects as go
|
9 |
|
10 |
-
|
11 |
class CustomTheme(Base):
|
12 |
def __init__(
|
13 |
self,
|
@@ -129,7 +128,7 @@ def display_results(video_url, video_file, description):
|
|
129 |
css = """
|
130 |
body {
|
131 |
background-color: #ffffff;
|
132 |
-
background-image: radial-gradient(#eb5726 1px, transparent 1px)
|
133 |
background-size: 10px 10px;
|
134 |
background-repeat: repeat;
|
135 |
background-attachment: fixed;
|
@@ -175,6 +174,7 @@ h3 {
|
|
175 |
}
|
176 |
"""
|
177 |
|
|
|
178 |
def save_uploaded_file(uploaded_file):
|
179 |
upload_dir = "uploaded_videos"
|
180 |
os.makedirs(upload_dir, exist_ok=True)
|
|
|
7 |
import os
|
8 |
import plotly.graph_objects as go
|
9 |
|
|
|
10 |
class CustomTheme(Base):
|
11 |
def __init__(
|
12 |
self,
|
|
|
128 |
css = """
|
129 |
body {
|
130 |
background-color: #ffffff;
|
131 |
+
background-image: radial-gradient(#eb5726 1px, transparent 1px);
|
132 |
background-size: 10px 10px;
|
133 |
background-repeat: repeat;
|
134 |
background-attachment: fixed;
|
|
|
174 |
}
|
175 |
"""
|
176 |
|
177 |
+
|
178 |
def save_uploaded_file(uploaded_file):
|
179 |
upload_dir = "uploaded_videos"
|
180 |
os.makedirs(upload_dir, exist_ok=True)
|