younes21000 commited on
Commit
b2b888c
·
verified ·
1 Parent(s): a5ff31f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -6
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
- # Convert the waveform (numpy array) to a list of floats (required by Whisper)
50
- waveform_list = waveform.tolist()
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