Spaces:
Sleeping
Sleeping
File size: 813 Bytes
3301c08 b23c4a5 3301c08 0105482 aba0e7d 3301c08 aba0e7d 3301c08 aba0e7d 4655d57 aba0e7d 3301c08 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import whisper
import gradio as gr
import subprocess
import os
# Load Whisper model
model = whisper.load_model("large")
def transcribe_video(video_path):
try:
audio_path = "audio.wav"
subprocess.run(
["ffmpeg", "-i", video_path, "-ar", "16000", "-ac", "1", "-c:a", "pcm_s16le", audio_path],
check=True
)
result = model.transcribe(audio_path, task="transcribe", language="ur")
return result["text"]
except Exception as e:
return f"An error occurred: {e}"
# Gradio Interface
interface = gr.Interface(
fn=transcribe_video,
inputs=gr.Video(label="Upload your Urdu-speaking video"),
outputs=gr.Textbox(label="Transcribed Text"),
title="Urdu Video Transcription App"
)
if __name__ == "__main__":
interface.launch()
|