Spek (Acoustic Spectrum Analyser)

If there's software you need and you can't find, make a request for it.
Post Reply
User avatar
john256
Posts: 89
Joined: 1. Jun 2011, 07:52

Spek (Acoustic Spectrum Analyser)

Post 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:
Image
User avatar
gapan
Salix Wizard
Posts: 6241
Joined: 6. Jun 2009, 17:40

Re: Spek (Acoustic Spectrum Analyser)

Post 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
Image
Image
User avatar
john256
Posts: 89
Joined: 1. Jun 2011, 07:52

Re: Spek (Acoustic Spectrum Analyser)

Post 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
Post Reply