greenmix commited on
Commit
a2f8b29
·
verified ·
1 Parent(s): 34f5924

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -12
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
- # Custom Title
71
- gr.Markdown("# Shyam's AI Audio Studio")
72
 
73
- # Description for the tool
74
  gr.Markdown(
75
- """
76
- Welcome to **Shyam's AI Audio Studio**!
77
- This tool allows you to upload audio files and apply various effects like:
78
- - Noise Reduction
79
- - Pitch Shifting (up or down by semitones)
80
- - Time Stretching (speed up or slow down)
81
-
82
- Experiment with the sliders to fine-tune the effects and get your desired sound!
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