Spaces:
Sleeping
Sleeping
File size: 936 Bytes
0105482 aba0e7d 88a8a15 aba0e7d 88a8a15 aba0e7d 88a8a15 aba0e7d 88a8a15 0105482 aba0e7d 4655d57 0105482 aba0e7d |
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 |
def transcribe_video(video_path):
try:
# Debug: Check if the video file exists
if not os.path.exists(video_path):
return f"Error: File not found at {video_path}"
# Extract audio from the uploaded video
audio_path = "audio.wav"
process = subprocess.run(
["ffmpeg", "-i", video_path, "-ar", "16000", "-ac", "1", "-c:a", "pcm_s16le", audio_path],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True
)
if process.returncode != 0:
return f"ffmpeg error: {process.stderr}"
# Transcribe the audio in Urdu
result = model.transcribe(audio_path, task="transcribe", language="ur")
return result["text"]
except FileNotFoundError:
return "Error: ffmpeg is not installed or not found in the environment."
except Exception as e:
return f"An error occurred: {e}"
|