Spaces:
Sleeping
Sleeping
File size: 701 Bytes
c60e096 87107a2 c60e096 30d58a1 c60e096 30d58a1 c60e096 6cb9375 c60e096 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import gradio as gr
import whisper
# Load the Whisper model
model = whisper.load_model("base")
def transcribe(audio_file):
# Process the audio file directly with the file path
result = model.transcribe(audio_file)
# Return the transcription
return result['text']
# Create the Gradio interface
iface = gr.Interface(fn=transcribe,
inputs=gr.Audio(sources="upload", type="filepath", label="Upload Audio"),
outputs="text",
title="Whisper Transcription",
description="Upload an audio file to transcribe it using OpenAI's Whisper model.")
# Launch the app
if __name__ == "__main__":
iface.launch()
|