Spaces:
Sleeping
Sleeping
File size: 428 Bytes
3c36fb5 36d3ea0 f784068 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from gradio_client import Client, handle_file
def api_gradio_transcribe(url: str):
client = Client("hf-audio/whisper-large-v3-turbo")
result = client.predict(
inputs=handle_file(url),
task="transcribe",
api_name="/predict"
)
return result
# print(api_gradio_transcribe("https://static.langkingdom.com/user_playlist_practice_videos/937f2c1558c92a0ea81a6778c8426044.mov"))
|