y, sr = librosa.load("audio_countdown.wav")import matplotlib.pyplot as plt
print(f'y: {y[:10]}')print(f'shape y: {y.shape}')print(f'sr: {sr}')import pandas as pd
pd.Series(y).plot(figsize=(10,5),lw=1,title='Raw Audio Example')
plt.show()
import numpy as np
import matplotlib.pyplot as plt
D = librosa.stft(y)
S_db = librosa.amplitude_to_db(np.abs(D), ref=np.max)
S_db.shape
fig, ax = plt.subplots(figsize=(10,5))
img = librosa.display.specshow(S_db,x_axis='time',y_axis='log',ax=ax)
ax.set_title('Spectogram Example', fontsize=20)
fig.colorbar(img, ax=ax,format=f'%0.2f')
plt.show()
基本概念
HTTP(HyperText Transfer Protocol:超文本传输协议)是一种应用层协议,主要用于在网络上进行信息的传递,特别是用于Web浏览器和服务器之间的通信。
它使用明文方式发送数据,这意味着传输的内容可…