Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- app.py +1 -1
- requirements.txt +1 -0
app.py
CHANGED
@@ -26,7 +26,7 @@ with gr.Blocks() as demo:
|
|
26 |
|
27 |
with gr.Row():
|
28 |
audio_input = gr.Audio(type="filepath", label="Upload Audio")
|
29 |
-
pitch_slider = gr.Slider(-12, 12, value=0, step=1, label="Pitch Shift (semitones)")
|
30 |
submit_btn = gr.Button("Apply Pitch Shift")
|
31 |
|
32 |
with gr.Row():
|
|
|
26 |
|
27 |
with gr.Row():
|
28 |
audio_input = gr.Audio(type="filepath", label="Upload Audio")
|
29 |
+
pitch_slider = gr.Slider(-12, 12, value=0, step=0.1, label="Pitch Shift (semitones)")
|
30 |
submit_btn = gr.Button("Apply Pitch Shift")
|
31 |
|
32 |
with gr.Row():
|
requirements.txt
CHANGED
@@ -2,3 +2,4 @@ gradio
|
|
2 |
librosa
|
3 |
numpy
|
4 |
soundfile
|
|
|
|
2 |
librosa
|
3 |
numpy
|
4 |
soundfile
|
5 |
+
ffmpeg
|