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