음성 처리
-
음성 처리-1 이미지음성 처리 2023. 7. 4. 16:51
1. librosa 음성 데이터를 이미지로 변환하여 특징을 추출하고 처리하기 위한 python 라이브러리이다. import matplotlib.pyplot as plt import numpy as np import soundfile as sf import librosa import librosa.display file = './data/blues.00001.wav' data, sr = librosa.load(file) duration = 10 samples = int(duration *sr) start =0 y = data[start:start+samples] spec = librosa.stft(y) spec_db = librosa.amplitude_to_db(np.abs(spec), ref=np.max..