librosaの基本処理
librosaの基本処理
インポート
import librosa
データ読み込み
y,sr = librosa.load(file, sr=None)
# yは振幅
# srはサンプリングレート
波形の描画
fig, ax = plt.subplots(figsize = (16, 2))
fig.suptitle('Sound Waves', fontsize=16)
librosa.display.waveplot(y = y, color = "b")
メルスペクトログラムの作成
y = librosa.feature.melspectrogram(y,n_mels=256)
# メル周波係数の計算
y = librosa.power_to_db(y).astype(np.float32)
# dB(デジベル、音圧)に変換
メルスペクトログラムの表示
plt.figure(figsize=(12, 4))
librosa.display.specshow(y)
plt.title('mel power spectrogram')
plt.colorbar(format='%02.0f dB')
plt.tight_layout()
Author And Source
この問題について(librosaの基本処理), 我々は、より多くの情報をここで見つけました https://qiita.com/tnot_found/items/fac888888f5ad36a6032著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .