Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
import moviepy.editor as mp
|
3 |
import librosa
|
4 |
-
import numpy as np
|
5 |
from transformers import pipeline
|
6 |
|
7 |
# Load Whisper model for speech-to-text
|
@@ -46,11 +45,8 @@ def generate_subtitles(video_file, language_name):
|
|
46 |
# Load the audio file as a waveform using librosa
|
47 |
waveform, sr = librosa.load(audio_path, sr=16000) # sr=16000 for Whisper
|
48 |
|
49 |
-
#
|
50 |
-
|
51 |
-
|
52 |
-
# Pass the waveform to Whisper's ASR model
|
53 |
-
transcription = asr(waveform_list)["text"]
|
54 |
|
55 |
print("Starting translation")
|
56 |
|
|
|
1 |
import gradio as gr
|
2 |
import moviepy.editor as mp
|
3 |
import librosa
|
|
|
4 |
from transformers import pipeline
|
5 |
|
6 |
# Load Whisper model for speech-to-text
|
|
|
45 |
# Load the audio file as a waveform using librosa
|
46 |
waveform, sr = librosa.load(audio_path, sr=16000) # sr=16000 for Whisper
|
47 |
|
48 |
+
# Pass the waveform (NumPy array) directly to Whisper's ASR model
|
49 |
+
transcription = asr(waveform)["text"]
|
|
|
|
|
|
|
50 |
|
51 |
print("Starting translation")
|
52 |
|