Spaces:
Sleeping
Sleeping
File size: 843 Bytes
678798d 3ab5767 678798d 3ab5767 678798d 3ab5767 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import gradio as gr
from pyannote.audio import Pipeline
# ืืืขื ืืช ืืืืื ืฉื Pyannote ืืืืืื ืืืืจืื
pipeline = Pipeline.from_pretrained("pyannote/speaker-diarization")
# ืคืื ืงืฆืื ืืืืฆืืข ืืืืื ืืืืจืื
def diarize(audio_file):
diarization = pipeline(audio_file)
segments = []
for turn, _, speaker in diarization.itertracks(yield_label=True):
segments.append({
"start": turn.start,
"end": turn.end,
"speaker": speaker
})
return segments
# ืืืืจืช ืืืฉืง Gradio
interface = gr.Interface(
fn=diarize,
inputs=gr.Audio(source="upload", type="filepath"),
outputs="json",
description="Upload an audio file to get speaker diarization (timestamps and speaker IDs only)."
)
# ืืจืฆืช ืืืืฉืง
interface.launch()
|