在频谱图的x轴上获取更多时间点

时间:2018-11-22 22:44:51

标签: python matplotlib spectrogram

所以我代表了一段较长的视频(15分钟)的频谱图。在时间轴上,我每3分钟20秒就有一个数据点。 这是我的频谱图: enter image description here

我想每秒在x轴上放置一个数据点。我试图从代码中修改函数timeTicks,但是它不起作用。作为替代方案,我已经看到可以放大频谱图,但是似乎无法正常使用。

这是代码:

import matplotlib.pyplot as plt
import scipy.io.wavfile as wavfile

cmap = plt.get_cmap('plasma') # this may fail on older versions of matplotlib
vmin = -40  # hide anything below -40 dB
cmap.set_under(color='k', alpha=None)

rate, frames = wavfile.read("audio_test.wav")
fig, ax = plt.subplots()
pxx, freq, t, cax = ax.specgram(frames[:, 0], # first channel
                                Fs=rate,      # to get frequency axis in Hz
                                cmap=cmap, vmin=vmin)
cbar = fig.colorbar(cax)
cbar.set_label('Intensity dB')
ax.axis("tight")

# Prettify
import matplotlib
import datetime

ax.set_xlabel('time h:mm:ss')
ax.set_ylabel('frequency kHz')

scale = 1e3                     # KHz
ticks = matplotlib.ticker.FuncFormatter(lambda x, pos: '{0:g}'.format(x/scale))
ax.yaxis.set_major_formatter(ticks)

def timeTicks(x, pos):
    d = datetime.timedelta(seconds=x)
    return str(d)
formatter = matplotlib.ticker.FuncFormatter(timeTicks)
ax.xaxis.set_major_formatter(formatter)
ax.xaxis.set_major_locator(ticker.IndexLocator(base=180, offset=60))
plt.show()

编辑: 当前的频谱图: enter image description here

0 个答案:

没有答案