on1onmangoes commited on
Commit
c153aa4
1 Parent(s): 7eb9241

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -0
app.py CHANGED
@@ -1,4 +1,24 @@
1
  import gradio as gr
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  def greet(name):
4
  return "Hello " + name + "!!"
 
1
  import gradio as gr
2
+ import torch
3
+ import io
4
+ import base64
5
+ import numpy as np
6
+ import scipy.io.wavfile
7
+ from typing import Text
8
+ from pyannote.audio import Pipeline
9
+ from pyannote.audio import Audio
10
+ from pyannote.core import Segment
11
+ import gradio as gr
12
+
13
+ import yt_dlp as youtube_dl
14
+ from gradio_client import Client
15
+ from pyannote.audio import Pipeline
16
+ from transformers.pipelines.audio_utils import ffmpeg_read
17
+
18
+
19
+
20
+
21
+
22
 
23
  def greet(name):
24
  return "Hello " + name + "!!"