soundbox/analyze-single.py

65 lines
1.6 KiB
Python
Raw Normal View History

2020-12-17 22:08:07 +00:00
import soundbox
import numpy as np
import matplotlib
import matplotlib.pyplot as plt
import sys
2020-12-17 22:08:07 +00:00
if len(sys.argv) != 3:
print(f"""Utilisation: {sys.argv[0]} [source] [output]
Affiche la transformée de Fourier du fichier [source] sur un graphe
dans le fichier [output]. Passer - comme [output] fait safficher le
graphe dans une fenêtre.""")
sys.exit(1)
source_file = sys.argv[1]
output_file = sys.argv[2]
# Calcul du FFT
signal = soundbox.load_signal(source_file)
freqs = np.fft.fft(signal)[:soundbox.samp_rate // 2]
values = np.absolute(freqs) / np.max(np.absolute(freqs))
# Génération du graphe
plt.style.use('ggplot')
plt.rcParams.update({
'figure.figsize': (10, 5),
'font.size': 16,
'font.family': 'Concourse T4',
})
2020-12-17 22:08:07 +00:00
fig, ax = plt.subplots()
ax.tick_params(axis='both', which='major', labelsize=12)
remove = values < 0.01
x = np.arange(len(values))
ax.plot(x[remove == False], values[remove == False])
# Configuration des axes
freq_scale = soundbox.samp_rate / len(signal)
2020-12-17 22:08:07 +00:00
def freq_format(value, pos):
return f'{value * freq_scale:.0f} Hz'
def ampl_format(value, pos):
return f'{value:.1f}'
2020-12-17 22:08:07 +00:00
ax.set_xlabel('Fréquence', labelpad=10)
ax.set_xscale('log', base=2)
2020-12-17 22:08:07 +00:00
ax.xaxis.set_major_formatter(matplotlib.ticker.FuncFormatter(freq_format))
ax.xaxis.set_major_locator(plt.MultipleLocator(100 / freq_scale))
ax.set_ylabel('Amplitude relative', labelpad=10)
ax.yaxis.set_major_formatter(matplotlib.ticker.FuncFormatter(ampl_format))
ax.yaxis.set_major_locator(plt.MultipleLocator(.2))
2020-12-17 22:08:07 +00:00
# Rendu du résultat
if output_file == '-':
plt.show()
else:
plt.tight_layout()
plt.savefig(output_file)