You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
file_path (str): Directory to search for files, which should be enumarated like 0.wav, 1.wav, 2.wav, etc.
output_file (str, optional): File to which output spectrogram should be saved. Defaults to f'{IMG_DIR}/spectrogram.png'.. Defaults to f'{IMG_DIR}/spectrogram.png':str.
"""
y, sr = librosa.load(file_path, sr=None)
D = librosa.amplitude_to_db(librosa.stft(y), ref=np.max)