# HG changeset patch # User cannam # Date 1226338454 0 # Node ID 7f3a806ed1df0a637bede0e34845511db9fdc105 # Parent 70e6826adc648e114944e3019b414cf86f80052a * Add PowerSpectrum to docs diff -r 70e6826adc64 -r 7f3a806ed1df README --- a/README Mon Nov 10 17:28:54 2008 +0000 +++ b/README Mon Nov 10 17:34:14 2008 +0000 @@ -129,6 +129,13 @@ - SpectralCentroid calculates the centre of gravity of the frequency domain representation of each block of audio. + - PowerSpectrum calculates a power spectrum from the input audio. + Actually, it doesn't do any work except converting from the cartesian + complex representation. The work of converting to frequency domain + is all done for it by the host or host SDK; the plugin just needs to + declare that it wants frequency domain input. This is the simplest + of the example plugins. + - AmplitudeFollower is a simple implementation of SuperCollider's amplitude-follower algorithm. diff -r 70e6826adc64 -r 7f3a806ed1df examples/vamp-example-plugins.cat --- a/examples/vamp-example-plugins.cat Mon Nov 10 17:28:54 2008 +0000 +++ b/examples/vamp-example-plugins.cat Mon Nov 10 17:34:14 2008 +0000 @@ -1,6 +1,6 @@ vamp:vamp-example-plugins:zerocrossing::Low Level Features vamp:vamp-example-plugins:spectralcentroid::Low Level Features +vamp:vamp-example-plugins:powerspectrum::Visualisation vamp:vamp-example-plugins:percussiononsets::Time > Onsets vamp:vamp-example-plugins:amplitudefollower::Low Level Features vamp:vamp-example-plugins:fixedtempo::Time > Tempo - diff -r 70e6826adc64 -r 7f3a806ed1df src/doc-overview --- a/src/doc-overview Mon Nov 10 17:28:54 2008 +0000 +++ b/src/doc-overview Mon Nov 10 17:34:14 2008 +0000 @@ -40,6 +40,13 @@ - SpectralCentroid calculates the centre of gravity of the frequency domain representation of each block of audio. + - PowerSpectrum calculates a power spectrum from the input audio. + Actually, it doesn't do any work except converting from the cartesian + complex representation. The work of converting to frequency domain + is all done for it by the host or host SDK; the plugin just needs to + declare that it wants frequency domain input. This is the simplest + of the example plugins. + - AmplitudeFollower is a simple implementation of SuperCollider's amplitude-follower algorithm.