Difference between revisions of "Spectrograms"

From WikiDelia
Jump to navigationJump to search
(Software)
(Logarithmic frequency axis)
 
(36 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[[Image:City Music - Spectrogram.jpg|800px]]
 
[[Image:City Music - Spectrogram.jpg|800px]]
  
Spectrograms are used in the WikiDelia to visualise the sonic content of Delia's pieces of music.
+
[[Spectrograms]] are used in the WikiDelia to visualise the sonic content of Delia's music.
  
In each spectrgram, time runs from left to right, low frequencies are at the bottom and high ones at the top and the light at each point in the graph represents the energy in the sound at one frequency at a particular moment (or, rather, in one frequency band around a particular moment.)
+
In each spectrogram, time runs from left to right, low frequencies are at the bottom and high ones at the top and the light at each point in the graph represents the energy in the sound at one frequency at a particular moment (or, rather, in one frequency band in a short sample taken around a particular moment.)
  
 
As well as helping us understand the internal structure of Delia's pieces and her instruments and effects, these also help us recreate conventional scores from her sound files, for example:
 
As well as helping us understand the internal structure of Delia's pieces and her instruments and effects, these also help us recreate conventional scores from her sound files, for example:
Line 11: Line 11:
  
 
=Logarithmic frequency axis=
 
=Logarithmic frequency axis=
The spectrograms used in the WikiDelia are not the usual kind, where the Y axis represents the linear frequency scale from 0 to 22050Hz and in which the top half of the graphic represents just the top octave of the sound, with all the musical detail crushed into the bottom few pixels. Here, the vertical scale is logarithmic, which gives the same number of pixel rows per semitone and per octave.
+
[[Image:Sndfile-spectrogram analysis of The Pattern Emerges.png|thumb|right|The Pattern Emerges - Linear spectrogram from 0 to 22kHz of the whole piece (177 sec)]]
 +
Most FFT-based spectrographic programs' output have a linear frequency axis, usually from 0Hz to 22050Hz for a CD-quality piece, in which the top half of the graph represents the top octave of the sound, the mostly inaudible 11025-22050Hz band, with all the musical detail crushed into the bottom rows of pixels.
  
Not only does this give a graphic representation to music similar to conventional score notation
+
[[Image:Sndfile-spectrogram analysis of The Pattern Emerges 8192x4096 cropped.png|thumb|right|The Pattern Emerges - linear spectrogram from 0 to 4kHz of the first 20s (the bottom left corner of the above)]]
but also give a visual footprint of the same height and shape to each note of an instrument.
+
Even if you zoom in on the interesting part of the spectrogram, the top half of the graph always represents the top octave of the visible frequency range.
 +
 
 +
{{Thumb|The Pattern Emerges - log spectrogram from 50Hz to 3600Hz of the first 20 seconds}}
 +
What we would like is for each octave to be given the same height in the graph.
 +
 
 +
The spectrograms used in the WikiDelia are not the usual kind. Their vertical scale is logarithmic, which gives the same number of pixel rows per octave.
 +
 
 +
Not only does this give a graphic representation to music similar to conventional score notation for the notes and rhythms
 +
but also give a characteristic graphical footprint of constant visual size to different notes of the same instrument (in a linear spectrogram, the harmonics of higher notes are more widely spread than those of lower notes.)
  
 
=Usage in the WikiDelia=
 
=Usage in the WikiDelia=
The spectrogram of a piece goes in three places:
+
The spectrogram of a piece goes in two places:
 
* On the piece's page in a section '''Spectrogram''' usually just above '''Availability''' so that the Listen button is near.
 
* On the piece's page in a section '''Spectrogram''' usually just above '''Availability''' so that the Listen button is near.
 
* Spectrograms of complete pieces are on the [[Audio]] page
 
* Spectrograms of complete pieces are on the [[Audio]] page
* in delia-derbyshire.net/spectrograms
 
 
For example the piece [[Air]] has [[:File:Air.ogg]] and [[:File:Air - Spectrogram.jpg]], used by the MediaWiki macros <TT><nowiki>{{Spectrogram|Air - Spectrogram}}</nowiki></TT> and <TT><nowiki>{{Spectrogallery|Air}}</nowiki></TT>
 
For example the piece [[Air]] has [[:File:Air.ogg]] and [[:File:Air - Spectrogram.jpg]], used by the MediaWiki macros <TT><nowiki>{{Spectrogram|Air - Spectrogram}}</nowiki></TT> and <TT><nowiki>{{Spectrogallery|Air}}</nowiki></TT>
 +
 +
=Software=
 +
{{Thumb|Noah - Grayscale spectrogram by mkjpg}}
 +
 +
The WikiDelia's spectrum analyser, [https://gitlab.com/martinwguy/delia-derbyshire/tree/master/anal "mkjpg"], was written specifically for it using a modified version of [http://www.mega-nerd.com/libsndfile/tools/#spectrogram sndfile-spectrogram] to prepare a linear spectrogram which is then distorted by an ImageMagick script to give it a logarithmic frequency axis.
 +
 +
The program "Sox" can also be used to produce the linear spectrogram, but you need [https://sourceforge.net/u/martinwguy/sox this modified version] to remove the limits on output image size, to normalise the output's brightness, and to make it 250 times faster and not need 16GB of RAM.
 +
 +
{{Thumb|Noah - Grayscale spectrogram by logft}}
 +
{{Thumb|Noah - Grayscale spectrogram by constant-q-cpp}}
 +
 +
An alternative technique would be to perform a Constant-Q tranform directly instead of distorting a linear spectrogram. Candidates are:
 +
* Judith Brown's brute force algorithm, [http://gitlab.com/martinwguy/logft "logft"] from 1988-91.
 +
* Brown and Puckett's efficient algorithm,<ref>[http://academics.wellesley.edu/Physics/brown/pubs/effalgV92P2698-P2701.pdf An efficient algorithm for the calculation of a constant Q transform] by Brown and Puckette.</ref><ref>[http://wwwmath.uni-muenster.de/logik/Personen/blankertz/constQ/constQ.html ''The Constant Q Transform''], an implementation in Matlab by Benjamin Blankertz</ref><ref>[http://sourceforge.net/p/sc3-plugins/code/ci/master/tree/source/PitchDetection/Qitch.cpp An earlier implementation in more C-like C++] in a pitch detection plugin for Supercollider, licensed under GPL.</ref> using a precomputed FFT temporal kernel (a what?)
 +
* An optimized version of the above, "constant-q-cpp", doing octave decimation of the signal to save compute time.<ref>[http://iem.kug.ac.at/fileadmin/media/iem/projects/2010/smc10_schoerkhuber.pdf Constant-Q Transform Toolbox for Music Processing]: An optimization in MATLAB of Brown and Puckette's efficient Constant-Q algorithm.</ref><ref>[https://code.soundsoftware.ac.uk/projects/constant-q-cpp ''C++ Constant-Q''] at soundsoftware.co.uk, a C++ implementation of the above with permissive license.</ref>
 +
 +
The results with the implementations I have found have so far been disappointing: crisper at the top but lacking temporal detail in the lower frequency range.
 +
 +
Graphical programs that can directly display log-frequency-axis spectrograms are:
 +
* the free audio editor [http://www.audacityteam.org Audacity], though the output is blockier than ours
 +
* the free audio file viewer "[http://www.sonicvisualiser.org sonic-visualiser]", which also has a Constant-Q spectrogram VAMP plugin
 +
* the latest release of [http://www.mega-nerd.com/libsndfile/tools/ sndfile-tools] (1.04 or later) includes a new <TT>--log-freq</TT> option to <TT>sndfile-spectrogram</TT> achieving the same effect as here. If your OS has an older version and you can compile C, you can [https://github.com/erikd/sndfile-tools get it on github].
  
 
=Get spectrograms of your music!=
 
=Get spectrograms of your music!=
Line 31: Line 61:
 
* number of pixel columns per second on the time axis (usually 50)
 
* number of pixel columns per second on the time axis (usually 50)
  
Optionally the software can superimpose single-pixel black and white lines at the frequencies of the piano keys and three-pixel-wide white lines at the positions of the manuscript stave lines, see the example on the right.
+
Optionally the software can superimpose single-pixel black and white lines at the frequencies of the piano keys and three-pixel-wide white lines at the positions of the manuscript staff lines, see the example on the right.
  
 
If this interests you, please [[Donate|Make a small donation]] and email <TT>delia.derbyshire.net&#64;gmail.com</TT> attaching the sound file you would like turned into a picture.
 
If this interests you, please [[Donate|Make a small donation]] and email <TT>delia.derbyshire.net&#64;gmail.com</TT> attaching the sound file you would like turned into a picture.
  
=Software=
+
Alternatively, if you can compile C for Linux, you can fetch [https://gitlab.com/martinwguy/spettro spettro from gitlab], which plays music files while showing a log spectrogram of it scrolling right to left with the current playing time at centre screen.
The WikiDelia's spectrum analyser was written specifically for it, using a modified version of [http://www.mega-nerd.com/libsndfile/tools/#spectrogram sndfile-spectrogram] to prepare a linear spectrogram which is then distorted by [https://github.com/martinwguy/delia-derbyshire/tree/master/anal an ImageMagick script] to give it a logarithmic frequency axis.
 
 
 
The program "Sox" can also be used to produce the linear spectrogram, but you need [http://github.com/martinwguy/sox this modified version] to remove the limits on output image size, to normalise the output's brightness, and to make it 250 times faster and not need 16GB of RAM.
 
  
An alternative technique would be to write a Constant-Q tranform directly instead of distorting a linear FFT
+
=[[Inverse spectrograms]]=
<ref>[http://academics.wellesley.edu/Physics/brown/pubs/effalgV92P2698-P2701.pdf An efficient algorithm for the calculation of a constant Q transform] by Brown and Puckette.</ref>
+
There are a few reconversions of spectrograms of unpublished music back into rough audio, created by some [https://gitlab.com/martinwguy/delia-derbyshire/tree/master/anal even hairier custom software]:
<ref>[http://wwwmath.uni-muenster.de/logik/Personen/blankertz/constQ/constQ.html ''The Constant Q Transform''], an implementation in Matlab by Benjamin Blankertz</ref>
+
* ''[[Pot Au Feu early version]]'', to get an idea of the audio quality of the reconstructions
<ref>[http://iem.kug.ac.at/fileadmin/media/iem/projects/2010/smc10_schoerkhuber.pdf Constant-Q Transform Toolbox for Music Processing]: An optimization in MATLAB of Brown and Puckette's efficient Constant-Q algorithm.</ref>
+
* ''[[Singing Waters]]'', a rain-falling effect whose spectrogram resembles the layout of the poem it tells
<ref>[https://code.soundsoftware.ac.uk/projects/constant-q-cpp ''C++ Constant-Q''] at soundsoftware.co.uk, a C++ implementation of the above with permissive license.</ref>
+
* ''[[Robert Lowell]]'', a 4-minute evolving soundscape, reconstructed from only 4 pixel columns per second
<ref>[http://sourceforge.net/p/sc3-plugins/code/ci/master/tree/source/PitchDetection/Qitch.cpp An earlier implementation in more C-like C++] in a pitch detection plugin for Supercollider, licensed under GPL.</ref>
+
* ''[[Random Together 1]]'', 2m30 of cacophony, not helped at all by the reconstruction!
but my results with the implementations I have found have so far been disapponting: crisper at the top but completely losing temporal detail in the lower frequency range.
 
 
 
Graphical programs that can directly display log-frequency-axis spectrograms are:
 
* the free audio editor Audacity, though the output is blockier than ours
 
* the free audio file viewer "sonic-visualiser", which also has a Constant-Q spectrogram VAMP plugin
 
<!--
 
=Linear frequency axis=
 
[[Image:Sndfile-spectrogram analysis of The Pattern Emerges.png|thumb|right|The Pattern Emerges - linear spectrogram from 0 to 22kHz of the whole piece (177 sec)]]
 
Most spectrogram programs produce output that has a linear frequency axis, which compresses all the useful musical information into the bottom few pixels, while the entire top half of the graph is devoted to the almost inaudible top octave (11000 to 22000Hz).
 
 
 
[[Image:Sndfile-spectrogram analysis of The Pattern Emerges 8192x4096 cropped.png|thumb|right|The Pattern Emerges - linear spectrogram from 0 to 4kHz of the first 20s (the bottom left corner of the above)]]
 
Even if you zoom in on the bottom part of the spectrogram, the top half of the graph always represents the top octave of the visible frequency range.
 
 
 
=Logarithmic frequency axis=
 
{{Thumb|The Pattern Emerges - log spectrogram from 50Hz to 3600Hz of the first 20 seconds}}
 
What we would like is for each octave to be given the same height in the graph.
 
 
 
We achieve this here by using sndfile-spectrogram from the libsoundfile tools to produce a linear spectrogram and then distorting its frequency axis using an ImageMagick script. The code to do this is <code>mkjpg.sh</code> under https://github.com/martinwguy/delia-derbyshire/tree/master/anal
 
-->
 
  
 
=References=
 
=References=
 
<references/>
 
<references/>
 +
 +
[[Category:Technology]]

Latest revision as of 14:16, 12 February 2023

City Music - Spectrogram.jpg

Spectrograms are used in the WikiDelia to visualise the sonic content of Delia's music.

In each spectrogram, time runs from left to right, low frequencies are at the bottom and high ones at the top and the light at each point in the graph represents the energy in the sound at one frequency at a particular moment (or, rather, in one frequency band in a short sample taken around a particular moment.)

As well as helping us understand the internal structure of Delia's pieces and her instruments and effects, these also help us recreate conventional scores from her sound files, for example:

Logarithmic frequency axis

The Pattern Emerges - Linear spectrogram from 0 to 22kHz of the whole piece (177 sec)

Most FFT-based spectrographic programs' output have a linear frequency axis, usually from 0Hz to 22050Hz for a CD-quality piece, in which the top half of the graph represents the top octave of the sound, the mostly inaudible 11025-22050Hz band, with all the musical detail crushed into the bottom rows of pixels.

The Pattern Emerges - linear spectrogram from 0 to 4kHz of the first 20s (the bottom left corner of the above)

Even if you zoom in on the interesting part of the spectrogram, the top half of the graph always represents the top octave of the visible frequency range.

The Pattern Emerges - log spectrogram from 50Hz to 3600Hz of the first 20 seconds

What we would like is for each octave to be given the same height in the graph.

The spectrograms used in the WikiDelia are not the usual kind. Their vertical scale is logarithmic, which gives the same number of pixel rows per octave.

Not only does this give a graphic representation to music similar to conventional score notation for the notes and rhythms but also give a characteristic graphical footprint of constant visual size to different notes of the same instrument (in a linear spectrogram, the harmonics of higher notes are more widely spread than those of lower notes.)

Usage in the WikiDelia

The spectrogram of a piece goes in two places:

  • On the piece's page in a section Spectrogram usually just above Availability so that the Listen button is near.
  • Spectrograms of complete pieces are on the Audio page

For example the piece Air has File:Air.ogg and File:Air - Spectrogram.jpg, used by the MediaWiki macros {{Spectrogram|Air - Spectrogram}} and {{Spectrogallery|Air}}

Software

Noah - Grayscale spectrogram by mkjpg

The WikiDelia's spectrum analyser, "mkjpg", was written specifically for it using a modified version of sndfile-spectrogram to prepare a linear spectrogram which is then distorted by an ImageMagick script to give it a logarithmic frequency axis.

The program "Sox" can also be used to produce the linear spectrogram, but you need this modified version to remove the limits on output image size, to normalise the output's brightness, and to make it 250 times faster and not need 16GB of RAM.

Noah - Grayscale spectrogram by logft
Noah - Grayscale spectrogram by constant-q-cpp

An alternative technique would be to perform a Constant-Q tranform directly instead of distorting a linear spectrogram. Candidates are:

  • Judith Brown's brute force algorithm, "logft" from 1988-91.
  • Brown and Puckett's efficient algorithm,[1][2][3] using a precomputed FFT temporal kernel (a what?)
  • An optimized version of the above, "constant-q-cpp", doing octave decimation of the signal to save compute time.[4][5]

The results with the implementations I have found have so far been disappointing: crisper at the top but lacking temporal detail in the lower frequency range.

Graphical programs that can directly display log-frequency-axis spectrograms are:

  • the free audio editor Audacity, though the output is blockier than ours
  • the free audio file viewer "sonic-visualiser", which also has a Constant-Q spectrogram VAMP plugin
  • the latest release of sndfile-tools (1.04 or later) includes a new --log-freq option to sndfile-spectrogram achieving the same effect as here. If your OS has an older version and you can compile C, you can get it on github.

Get spectrograms of your music!

Moogies Bloogies - Spectrogram with piano staff (detail)

I am happy to run the log spectrum analyser on your music. You can specify:

  • lowest pitch (usually 27.5Hz)
  • number of octaves (usually 9, to 14080Hz)
  • number of pixels per semitone on the frequency axis (usually 8)
  • number of pixel columns per second on the time axis (usually 50)

Optionally the software can superimpose single-pixel black and white lines at the frequencies of the piano keys and three-pixel-wide white lines at the positions of the manuscript staff lines, see the example on the right.

If this interests you, please Make a small donation and email delia.derbyshire.net@gmail.com attaching the sound file you would like turned into a picture.

Alternatively, if you can compile C for Linux, you can fetch spettro from gitlab, which plays music files while showing a log spectrogram of it scrolling right to left with the current playing time at centre screen.

Inverse spectrograms

There are a few reconversions of spectrograms of unpublished music back into rough audio, created by some even hairier custom software:

  • Pot Au Feu early version, to get an idea of the audio quality of the reconstructions
  • Singing Waters, a rain-falling effect whose spectrogram resembles the layout of the poem it tells
  • Robert Lowell, a 4-minute evolving soundscape, reconstructed from only 4 pixel columns per second
  • Random Together 1, 2m30 of cacophony, not helped at all by the reconstruction!

References

  1. An efficient algorithm for the calculation of a constant Q transform by Brown and Puckette.
  2. The Constant Q Transform, an implementation in Matlab by Benjamin Blankertz
  3. An earlier implementation in more C-like C++ in a pitch detection plugin for Supercollider, licensed under GPL.
  4. Constant-Q Transform Toolbox for Music Processing: An optimization in MATLAB of Brown and Puckette's efficient Constant-Q algorithm.
  5. C++ Constant-Q at soundsoftware.co.uk, a C++ implementation of the above with permissive license.