Ahsen Khaliq commited on
Commit
7aaaf2f
1 Parent(s): 02205ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -20,9 +20,10 @@ inputs = gr.inputs.Audio(label="Input Audio", type="file")
20
  outputs = gr.outputs.Audio(label="Output Audio", type="file")
21
 
22
 
23
- title = "VITS"
24
- description = "demo for VITS: Conditional Variational Autoencoder with Adversarial Learning for End-to-End Text-to-Speech. To use it, simply add your text, or click one of the examples to load them. Read more at the links below."
25
- article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2106.06103'>Conditional Variational Autoencoder with Adversarial Learning for End-to-End Text-to-Speech</a> | <a href='https://github.com/jaywalnut310/vits'>Github Repo</a></p>"
26
 
 
27
 
28
- gr.Interface(inference, inputs, outputs, title=title, description=description, article=article).launch(debug=True)
 
20
  outputs = gr.outputs.Audio(label="Output Audio", type="file")
21
 
22
 
23
+ title = "PedalBoard"
24
+ description = "Gradio demo for PedalBoard: A Python library for adding effects to audio. To use it, simply add your audio, or click one of the examples to load them. Read more at the links below."
25
+ article = "<p style='text-align: center'><a href='https://engineering.atspotify.com/2021/09/07/introducing-pedalboard-spotifys-audio-effects-library-for-python/'>Introducing Pedalboard: Spotify’s Audio Effects Library for Python</a> | <a href='https://github.com/spotify/pedalboard'>Github Repo</a></p>"
26
 
27
+ examples = [['samples.wav']]
28
 
29
+ gr.Interface(inference, inputs, outputs, title=title, description=description, article=article, examples=examples).launch(debug=True)