text2video
Browse files- Source Code/app.py +18 -3
Source Code/app.py
CHANGED
|
@@ -64,10 +64,25 @@ with gr.Blocks() as demo:
|
|
| 64 |
|
| 65 |
gr.HTML(
|
| 66 |
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
<div style="background: linear-gradient(135deg, #4A00E0 0%, #8E2DE2 100%); padding: 3rem; border-radius: 20px; text-align: center; margin-bottom: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1);">
|
| 68 |
-
<
|
| 69 |
-
|
| 70 |
-
|
|
|
|
|
|
|
| 71 |
<p style="color: rgba(255,255,255,0.9); font-size: 1.3rem; margin-top: 1rem; font-weight: 500;">
|
| 72 |
Text-to-Video Studio using Temporal Latent Warping & Cross-Frame Attention
|
| 73 |
</p>
|
|
|
|
| 64 |
|
| 65 |
gr.HTML(
|
| 66 |
"""
|
| 67 |
+
<style>
|
| 68 |
+
.title-link {
|
| 69 |
+
color: white !important;
|
| 70 |
+
text-decoration: none;
|
| 71 |
+
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
| 72 |
+
display: block;
|
| 73 |
+
}
|
| 74 |
+
.title-link:hover {
|
| 75 |
+
transform: scale(1.01);
|
| 76 |
+
text-shadow: 0 0 20px rgba(255,255,255,0.3);
|
| 77 |
+
cursor: pointer;
|
| 78 |
+
}
|
| 79 |
+
</style>
|
| 80 |
<div style="background: linear-gradient(135deg, #4A00E0 0%, #8E2DE2 100%); padding: 3rem; border-radius: 20px; text-align: center; margin-bottom: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1);">
|
| 81 |
+
<a href="https://github.com/Amey-Thakur/ZERO-SHOT-VIDEO-GENERATION" target="_blank" class="title-link">
|
| 82 |
+
<h1 style="color: white; font-size: 3.5rem; font-weight: 800; margin: 0; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); letter-spacing: -1px;">
|
| 83 |
+
🎥 Zero-Shot Video Generation
|
| 84 |
+
</h1>
|
| 85 |
+
</a>
|
| 86 |
<p style="color: rgba(255,255,255,0.9); font-size: 1.3rem; margin-top: 1rem; font-weight: 500;">
|
| 87 |
Text-to-Video Studio using Temporal Latent Warping & Cross-Frame Attention
|
| 88 |
</p>
|