This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from scipy.io.wavfile import write | |
import numpy as np | |
samplerate = 44100 | |
def get_piano_notes(): | |
''' | |
Returns a dict object for all the piano | |
note's frequencies | |
''' |