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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -12
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("<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
 
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