shukdevdatta123 commited on
Commit
8294a9f
·
verified ·
1 Parent(s): a503c68

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -74,11 +74,11 @@ def plot_waveform(audio_file):
74
  signal = np.frombuffer(w.readframes(w.getnframes()), dtype=np.int16)
75
  framerate = w.getframerate()
76
 
77
- # Calculate the correct duration of the audio file
78
  duration = len(signal) / framerate
79
 
80
- # Create time axis for the waveform
81
- time = np.linspace(0., duration, len(signal))
82
 
83
  # Plot the waveform
84
  plt.figure(figsize=(10, 4))
 
74
  signal = np.frombuffer(w.readframes(w.getnframes()), dtype=np.int16)
75
  framerate = w.getframerate()
76
 
77
+ # Calculate the duration of the audio file
78
  duration = len(signal) / framerate
79
 
80
+ # Create time axis for the waveform using correct duration and framerate
81
+ time = np.arange(0, len(signal)) / framerate
82
 
83
  # Plot the waveform
84
  plt.figure(figsize=(10, 4))