-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot.py
37 lines (27 loc) · 863 Bytes
/
plot.py
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
27
28
29
30
31
32
33
34
35
36
37
import wave
import matplotlib.pyplot as plt
import numpy as np
import constant
# Open wav file
obj = wave.open(constant.file_path_recordings + constant.file_name_wav, "rb")
# print("Number of channels:", obj.getnchannels())
# print("Sample width:", obj.getsampwidth())
# print("Frame rate:", obj.getframerate())
# print("Number of frames:", obj.getnframes())
# print("Parameters:", obj.getparams())
# Get needed values from the wav file
sample_freq = obj.getframerate()
n_samples = obj.getnframes()
signal_wave = obj.readframes(-1)
obj.close()
t_audio = n_samples / sample_freq
signal_array = np.frombuffer(signal_wave, dtype=np.int16)
times = np.linspace(0, t_audio, num=n_samples)
# Create plot
plt.figure(figsize=(15,5))
plt.plot(times, signal_array)
plt.title("AUDIO")
plt.xlabel("Time (s)")
plt.ylabel("Signal Wave")
plt.xlim(0, t_audio)
plt.show()