update md

This commit is contained in:
Marcel Dechert
2020-12-05 19:54:40 +01:00
parent 531fff4c10
commit 28bce212d1
2 changed files with 11 additions and 4 deletions

View File

@@ -1,15 +1,15 @@
from numpy import*
from scipy.io.wavfile import read
from scipy.io.wavfile import write
import matplotlib.pyplot as plt
# import matplotlib.pyplot as plt
import scipy
import sounddevice as sd
import time
a = read("/home/jreinking/Projekte/doorbell/raspberry-pi-projects/res/klingel_aufnahme_microphne_cut.wav")
# a = read("/home/jreinking/Projekte/doorbell/raspberry-pi-projects/res/klingel_aufnahme_microphne_cut.wav")
# print(a)
# print(len(a[1]))
a = a[1]
# a = a[1]
def chunks(lst, n):
"""Yield successive n-sized chunks from lst."""