Spaces:
Running
Running
readstream
Browse files- README.md +2 -2
- app.py +2 -2
- theater_template.html +1 -1
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
emoji: 🐢
|
| 4 |
colorFrom: gray
|
| 5 |
colorTo: green
|
|
@@ -9,7 +9,7 @@ python_version: '3.13'
|
|
| 9 |
app_file: app.py
|
| 10 |
pinned: false
|
| 11 |
license: mit
|
| 12 |
-
short_description: Livestream
|
| 13 |
---
|
| 14 |
|
| 15 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: ReadStream
|
| 3 |
emoji: 🐢
|
| 4 |
colorFrom: gray
|
| 5 |
colorTo: green
|
|
|
|
| 9 |
app_file: app.py
|
| 10 |
pinned: false
|
| 11 |
license: mit
|
| 12 |
+
short_description: Livestream commentary for your favorite videos
|
| 13 |
---
|
| 14 |
|
| 15 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
CHANGED
|
@@ -265,11 +265,11 @@ button[role="tab"]:hover,
|
|
| 265 |
}
|
| 266 |
"""
|
| 267 |
|
| 268 |
-
with gr.Blocks(title="
|
| 269 |
gr.HTML(
|
| 270 |
"""
|
| 271 |
<div style="text-align: center; margin-bottom: 20px; padding-top: 10px;">
|
| 272 |
-
<h1 style="color: #fffffe; font-size: 2.2rem; font-weight: 700; margin-bottom: 5px; letter-spacing: -0.5px;">
|
| 273 |
<p style="color: #94a1b2; font-size: 1rem;">Simulate livestream chat replays based on reference video and document - Select 'Configure Custom Simulation' to create your own</p>
|
| 274 |
</div>
|
| 275 |
"""
|
|
|
|
| 265 |
}
|
| 266 |
"""
|
| 267 |
|
| 268 |
+
with gr.Blocks(title="ReadStream", theme=custom_theme, css=custom_css) as demo:
|
| 269 |
gr.HTML(
|
| 270 |
"""
|
| 271 |
<div style="text-align: center; margin-bottom: 20px; padding-top: 10px;">
|
| 272 |
+
<h1 style="color: #fffffe; font-size: 2.2rem; font-weight: 700; margin-bottom: 5px; letter-spacing: -0.5px;">ReadStream</h1>
|
| 273 |
<p style="color: #94a1b2; font-size: 1rem;">Simulate livestream chat replays based on reference video and document - Select 'Configure Custom Simulation' to create your own</p>
|
| 274 |
</div>
|
| 275 |
"""
|
theater_template.html
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
-
<title>
|
| 6 |
<!-- Google Fonts: Inter -->
|
| 7 |
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 8 |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
+
<title>ReadStream Theater</title>
|
| 6 |
<!-- Google Fonts: Inter -->
|
| 7 |
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 8 |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|