Spaces:
Runtime error
Runtime error
import os | |
import tempfile | |
import gradio as gr | |
from pyannote.audio import Pipeline | |
# ืฉืืืคืช Hugging Face Token ืื-Secret | |
hf_token = os.getenv("HF_TOKEN") | |
if not hf_token: | |
raise ValueError("HF_TOKEN is missing. Please set it in the Secrets section.") | |
# ืืขืื ืช ืืืื pyannote ืืืืืื ืืืืจืื | |
try: | |
pipeline = Pipeline.from_pretrained( | |
"pyannote/speaker-diarization", | |
use_auth_token=hf_token | |
) | |
except Exception as e: | |
raise RuntimeError(f"Failed to load the pipeline: {e}") | |
# ืคืื ืงืฆืื ืืืืืื ืืืืจืื | |
def diarize(audio): | |
try: | |
# ืฉืืืจืช ืืืืืื ืืงืืืฅ ืืื ื | |
with tempfile.NamedTemporaryFile(suffix=".wav", delete=False) as temp_audio: | |
temp_audio.write(audio.read()) | |
temp_audio_path = temp_audio.name | |
# ืขืืืื ืืืืืื ืขื pyannote | |
diarization = pipeline(temp_audio_path) | |
# ืขืืืื ืืชืืฆืื ืืืืืื ืืืืจืื | |
result = [] | |
for turn, _, speaker in diarization.itertracks(yield_label=True): | |
result.append(f"{speaker}: {turn.start:.1f}s - {turn.end:.1f}s") | |
# ืืืืงืช ืืงืืืฅ ืืืื ื ืืืืจ ืืฉืืืืฉ | |
os.remove(temp_audio_path) | |
return "\n".join(result) | |
except Exception as e: | |
return f"Error during diarization: {e}" | |
# ืืฆืืจืช ืืืฉืง Gradio | |
interface = gr.Interface( | |
fn=diarize, | |
inputs=gr.inputs.Audio(source="upload", type="file"), | |
outputs="text", | |
title="Speaker Diarization", | |
description="Upload an audio file (WAV, MP3, etc.) to detect speakers and their timestamps." | |
) | |
# ืืคืขืืช ืืืืฉืง | |
if __name__ == "__main__": | |
interface.launch() | |