Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -68,20 +68,22 @@ def apply_effects(audio_file, noise_reduction, pitch_shift_steps, time_stretch_r
|
|
68 |
def build_ui():
|
69 |
with gr.Blocks() as demo:
|
70 |
# Center-aligned Title
|
71 |
-
gr.Markdown("<
|
72 |
|
73 |
-
# Center-aligned Description
|
74 |
gr.Markdown(
|
75 |
-
"
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
|
|
|
|
85 |
)
|
86 |
|
87 |
# Input components
|
|
|
68 |
def build_ui():
|
69 |
with gr.Blocks() as demo:
|
70 |
# Center-aligned Title
|
71 |
+
gr.Markdown("<h1 style='text-align: center;'>Shyam's AI Audio Studio</h1>")
|
72 |
|
73 |
+
# Center-aligned Description
|
74 |
gr.Markdown(
|
75 |
+
"""
|
76 |
+
<div style='text-align: center;'>
|
77 |
+
<p>Welcome to <strong>Shyam's AI Audio Studio</strong>!</p>
|
78 |
+
<p>This tool allows you to upload audio files and apply various effects like:</p>
|
79 |
+
<ul style="display: inline-block; text-align: left;">
|
80 |
+
<li>Noise Reduction</li>
|
81 |
+
<li>Pitch Shifting (up or down by semitones)</li>
|
82 |
+
<li>Time Stretching (speed up or slow down)</li>
|
83 |
+
</ul>
|
84 |
+
<p>Experiment with the sliders to fine-tune the effects and get your desired sound!</p>
|
85 |
+
</div>
|
86 |
+
"""
|
87 |
)
|
88 |
|
89 |
# Input components
|