clement-pages commited on
Commit
2153326
·
1 Parent(s): b35b8ac

update space app

Browse files
Files changed (1) hide show
  1. app.py +14 -3
app.py CHANGED
@@ -1,12 +1,23 @@
1
  import gradio as gr
2
  from gradio_sourceviewer import SourceViewer
 
 
3
 
4
 
5
- example = SourceViewer().example_value()
 
 
 
 
 
6
 
7
  with gr.Blocks() as demo:
8
- gr.Markdown("WORK IN PROGRESS")
9
- source_viewer = SourceViewer()
 
 
 
 
10
 
11
  if __name__ == "__main__":
12
  demo.launch()
 
1
  import gradio as gr
2
  from gradio_sourceviewer import SourceViewer
3
+ from pyannote.audio import Pipeline
4
+ import os
5
 
6
 
7
+ def apply_pipeline(audio: str) -> tuple:
8
+ pipeline = Pipeline.from_pretrained(
9
+ "pyannote/speech-separation-ami-1.0", use_auth_token=os.environ["HF_TOKEN"]
10
+ )
11
+ return pipeline(audio)
12
+
13
 
14
  with gr.Blocks() as demo:
15
+ audio = gr.Audio(type="filepath")
16
+ btn = gr.Button("Apply separation pipeline")
17
+ source_viewer = SourceViewer(interactive=False)
18
+
19
+ btn.click(fn=apply_pipeline, inputs=[audio], outputs=[source_viewer])
20
+
21
 
22
  if __name__ == "__main__":
23
  demo.launch()