forked from wunnox/python_grundlagen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UB7.2_singing.py
executable file
·66 lines (57 loc) · 1.37 KB
/
UB7.2_singing.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/local/bin/python3
##############################################
#
# Name: UB7.2_stimme.py
#
# Author: Peter Christen /Digicomp
#
# Version: 1.0
#
# Date: 12.01.2016
#
# Purpose: Errechnet einen ein Diagramm aus einem sund mit numpy
# und gibt diesen mit matplotlib aus.
#
##############################################
from scipy.io.wavfile import read
from scipy.io.wavfile import write
import matplotlib.pyplot as plt
import numpy as np
# WAV-File
(fs, x) = read('UB7.2_singing-female.wav')
# Eingangssignal analysieren
print("Eingangssignal")
print("==============")
print("Frequenz", fs)
print("Samples", x.size)
print("Dauer", x.size / float(fs))
print("Max Wert", np.max(abs(x)))
# Ausschnitt aus wav nehmen
ss = 4.0 # Sek Start
es = 4.5 # Sek End
ss2 = int(ss * fs)
es2 = int(es * fs)
y = x[ss2:es2]
print()
print("Ausgangssignal")
print("==============")
print("Samples", y.size)
print("Dauer", y.size / float(fs))
# Ausschnitt in ein neues File schreiben
write('UB7.2_stimme_ausschnitt.wav', fs, y)
# Plot Eingangssignal
t = np.arange(x.size) / float(fs)
plt.figure(1)
plt.subplot(211)
plt.title('Eingangssignal')
plt.ylabel('amplitude')
plt.plot(t, x)
# Plot Ausgangssignal
# t2=np.arange(y.size)/float(fs)
t2 = np.arange(ss2, es2) / float(fs)
plt.subplot(212)
plt.title('Ausgangssignal')
plt.xlabel('time in s')
plt.ylabel('amplitude')
plt.plot(t2, y)
plt.show()