Spaces:
Sleeping
Sleeping
| 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")) | |