Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
78 |
duration = len(signal) / framerate
|
79 |
|
80 |
-
# Create time axis for the waveform
|
81 |
-
time = np.
|
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))
|