test_python / libs /transformer /get_transcript_2.py
minhpng's picture
minor fix
936a78c
raw
history blame
271 Bytes
from transformers import pipeline
def get_transcribe_transformers(url:str):
pipe = pipeline("automatic-speech-recognition", model="distil-whisper/distil-large-v3", return_timestamps=True)
result = pipe(url)
return result.get("text"), result.get("chunks")