Page 1 of 1
Spek (Acoustic Spectrum Analyser)
Posted: 16. Jan 2015, 20:34
by john256
Spek helps to analyse your audio files by showing their spectrogram.
Homepage:
http://spek.cc/
Source:
https://spek.googlecode.com/files/spek-0.8.2.tar.xz
Screenshot:

Re: Spek (Acoustic Spectrum Analyser)
Posted: 16. Jan 2015, 21:21
by gapan
Audacity has a similar feature (among many others).
Another option is to just use sox (you probably have this installed anyway).
Code: Select all
sox yourfile.flac -n spectrogram -o spectrum.png
Re: Spek (Acoustic Spectrum Analyser)
Posted: 17. Jan 2015, 11:08
by john256
Thanks, I wasn't aware that sox does spectrograms!
Note to self - to prepare spectrograms for all the files (*.flac) in the directory do:
Code: Select all
for i in *.flac; do sox "$i" -n spectrogram -o "${i%%.flac}.png"; done