jschwab21 commited on
Commit
ec891c9
·
verified ·
1 Parent(s): 111736f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -37,6 +37,7 @@ class CustomTheme(Base):
37
  )
38
  super().set(
39
  body_background_fill="radial-gradient(circle at center, rgba(235, 87, 38, 1) 0%, rgba(235, 87, 38, 0) 70%), #ffffff",
 
40
  body_text_color="#282828",
41
  block_background_fill="#ffffff",
42
  block_title_text_color="#eb5726",
@@ -103,9 +104,9 @@ with gr.Blocks(theme=custom_theme, css=css) as demo:
103
  with gr.Column():
104
  gr.Markdown("# **Sickstadium AI**", elem_classes="centered-markdown", elem_id="sickstadium-title")
105
  gr.Markdown("### Upload your videos. Find sick clips. Tell your truth.", elem_classes="centered-markdown")
106
- gr.Markdown("**Welcome to Sickstadium AI. Our goal is to empower content creators with the ability to tell their stories without the friction of traditional video editing software. Skip the timeline, and don't worry about your experience in video editing. Upload your video, explain the clip you want, and let our AI video editor do the work for you. Get more info about the Sickstadium project at Strongholdlabs.io**", elem_classes="centered-markdown")
107
- video_url = gr.Textbox(label="Video URL or Filepath", elem_id="video_url")
108
- description = gr.Textbox(label="Description of desired clip", elem_id="description")
109
  submit_button = gr.Button("Process Video", elem_id="submit_button")
110
  video_output = gr.Video(label="Processed Video", elem_id="video_output")
111
  download_output = gr.File(label="Download Processed Video", elem_id="download_output")
 
37
  )
38
  super().set(
39
  body_background_fill="radial-gradient(circle at center, rgba(235, 87, 38, 1) 0%, rgba(235, 87, 38, 0) 70%), #ffffff",
40
+ body_background_size="100% 100%",
41
  body_text_color="#282828",
42
  block_background_fill="#ffffff",
43
  block_title_text_color="#eb5726",
 
104
  with gr.Column():
105
  gr.Markdown("# **Sickstadium AI**", elem_classes="centered-markdown", elem_id="sickstadium-title")
106
  gr.Markdown("### Upload your videos. Find sick clips. Tell your truth.", elem_classes="centered-markdown")
107
+ gr.Markdown("**Welcome to Sickstadium AI. Our goal is to empower content creators with the ability to tell their stories without the friction of traditional video editing software. Skip the timeline, and don't worry about your experience in video editing. Upload your video, explain the clip you want, and let our AI video editor do the work for you. Get more info about the Sickstadium project at [Strongholdlabs.io](https://strongholdlabs.io/)**", elem_classes="centered-markdown")
108
+ video_url = gr.Textbox(label="Video URL:", elem_id="video_url")
109
+ description = gr.Textbox(label="Describe your clip:", elem_id="description")
110
  submit_button = gr.Button("Process Video", elem_id="submit_button")
111
  video_output = gr.Video(label="Processed Video", elem_id="video_output")
112
  download_output = gr.File(label="Download Processed Video", elem_id="download_output")