├── .gitignore ├── INSTALL.md ├── LICENSE ├── Makefile ├── README.md ├── help ├── attackTime-help.pd ├── attackTime~-help.pd ├── audio │ ├── drum-loop-1.wav │ ├── drum-loop-2.wav │ ├── satie.wav │ ├── testing.wav │ ├── training.wav │ └── voice2.wav ├── autoCorrPitch-help.pd ├── autoCorrPitch~-help.pd ├── bark-help.pd ├── barkSpec-help.pd ├── barkSpecBrightness-help.pd ├── barkSpecBrightness~-help.pd ├── barkSpecCentroid-help.pd ├── barkSpecCentroid~-help.pd ├── barkSpecFlatness-help.pd ├── barkSpecFlatness~-help.pd ├── barkSpecFlux-help.pd ├── barkSpecFlux~-help.pd ├── barkSpecIrregularity-help.pd ├── barkSpecIrregularity~-help.pd ├── barkSpecKurtosis-help.pd ├── barkSpecKurtosis~-help.pd ├── barkSpecRolloff-help.pd ├── barkSpecRolloff~-help.pd ├── barkSpecSkewness-help.pd ├── barkSpecSkewness~-help.pd ├── barkSpecSlope-help.pd ├── barkSpecSlope~-help.pd ├── barkSpecSpread-help.pd ├── barkSpecSpread~-help.pd ├── barkSpec~-help.pd ├── bark~-help.pd ├── bfcc-help.pd ├── bfcc~-help.pd ├── binWrangler-help.pd ├── cepstrum-help.pd ├── cepstrumPitch-help.pd ├── cepstrumPitch~-help.pd ├── cepstrum~-help.pd ├── chroma-help.pd ├── chroma~-help.pd ├── data │ ├── cluster.txt │ └── tID-help-labels.txt ├── dct-help.pd ├── dct~-help.pd ├── energy-help.pd ├── energyEntropy-help.pd ├── energyEntropy~-help.pd ├── energy~-help.pd ├── featureAccum-help.pd ├── featureDelta-help.pd ├── featureNorm-help.pd ├── harmonicRatio-help.pd ├── harmonicRatio~-help.pd ├── magSpec-help.pd ├── magSpec~-help.pd ├── maxSample-help.pd ├── maxSampleDelta-help.pd ├── maxSampleDelta~-help.pd ├── maxSample~-help.pd ├── melSpec-help.pd ├── melSpec~-help.pd ├── mfcc-help.pd ├── mfcc~-help.pd ├── minSample-help.pd ├── minSampleDelta-help.pd ├── minSampleDelta~-help.pd ├── minSample~-help.pd ├── nearestPoint-help.pd ├── peakSample-help.pd ├── peakSample~-help.pd ├── phaseSpec-help.pd ├── phaseSpec~-help.pd ├── sampleBuffer~-help.pd ├── specBrightness-help.pd ├── specBrightness~-help.pd ├── specCentroid-help.pd ├── specCentroid~-help.pd ├── specFlatness-help.pd ├── specFlatness~-help.pd ├── specFlux-help.pd ├── specFlux~-help.pd ├── specHarmonicity-help.pd ├── specHarmonicity~-help.pd ├── specIrregularity-help.pd ├── specIrregularity~-help.pd ├── specKurtosis-help.pd ├── specKurtosis~-help.pd ├── specRolloff-help.pd ├── specRolloff~-help.pd ├── specSkewness-help.pd ├── specSkewness~-help.pd ├── specSlope-help.pd ├── specSlope~-help.pd ├── specSpread-help.pd ├── specSpread~-help.pd ├── tID-conversion-help.pd ├── tID_fft-help.pd ├── tID_fft~-help.pd ├── tID_mean-help.pd ├── tID_std-help.pd ├── tabletool-help.pd ├── tempo~-help.pd ├── timbreID-help.pd ├── waveNoise-help.pd ├── waveNoise~-help.pd ├── waveSlope-help.pd ├── waveSlope~-help.pd ├── zeroCrossing-help.pd └── zeroCrossing~-help.pd ├── include └── tIDLib.h ├── pd-lib-builder └── Makefile.pdlibbuilder └── src ├── attackTime.c ├── attackTime~.c ├── autoCorrPitch.c ├── autoCorrPitch~.c ├── bark.c ├── bark2freq.c ├── barkSpec.c ├── barkSpecBrightness.c ├── barkSpecBrightness~.c ├── barkSpecCentroid.c ├── barkSpecCentroid~.c ├── barkSpecFlatness.c ├── barkSpecFlatness~.c ├── barkSpecFlux.c ├── barkSpecFlux~.c ├── barkSpecIrregularity.c ├── barkSpecIrregularity~.c ├── barkSpecKurtosis.c ├── barkSpecKurtosis~.c ├── barkSpecRolloff.c ├── barkSpecRolloff~.c ├── barkSpecSkewness.c ├── barkSpecSkewness~.c ├── barkSpecSlope.c ├── barkSpecSlope~.c ├── barkSpecSpread.c ├── barkSpecSpread~.c ├── barkSpec~.c ├── bark~.c ├── bfcc.c ├── bfcc~.c ├── bin2freq.c ├── binWrangler.c ├── cepstrum.c ├── cepstrumPitch.c ├── cepstrumPitch~.c ├── cepstrum~.c ├── chroma.c ├── chroma~.c ├── dct.c ├── dct~.c ├── energy.c ├── energyEntropy.c ├── energyEntropy~.c ├── energy~.c ├── featureAccum.c ├── featureDelta.c ├── featureNorm.c ├── freq2bark.c ├── freq2bin.c ├── freq2mel.c ├── harmonicRatio.c ├── harmonicRatio~.c ├── magSpec.c ├── magSpec~.c ├── maxSample.c ├── maxSampleDelta.c ├── maxSampleDelta~.c ├── maxSample~.c ├── mel2freq.c ├── melSpec.c ├── melSpec~.c ├── mfcc.c ├── mfcc~.c ├── minSample.c ├── minSampleDelta.c ├── minSampleDelta~.c ├── minSample~.c ├── nearestPoint.c ├── peakSample.c ├── peakSample~.c ├── phaseSpec.c ├── phaseSpec~.c ├── sampleBuffer~.c ├── specBrightness.c ├── specBrightness~.c ├── specCentroid.c ├── specCentroid~.c ├── specFlatness.c ├── specFlatness~.c ├── specFlux.c ├── specFlux~.c ├── specHarmonicity.c ├── specHarmonicity~.c ├── specIrregularity.c ├── specIrregularity~.c ├── specKurtosis.c ├── specKurtosis~.c ├── specRolloff.c ├── specRolloff~.c ├── specSkewness.c ├── specSkewness~.c ├── specSlope.c ├── specSlope~.c ├── specSpread.c ├── specSpread~.c ├── tIDLib.c ├── tID_fft.c ├── tID_fft~.c ├── tID_mean.c ├── tID_std.c ├── tabletool.c ├── tempo~.c ├── timbreID.c ├── timbreIDLib.c ├── waveNoise.c ├── waveNoise~.c ├── waveSlope.c ├── waveSlope~.c ├── zeroCrossing.c └── zeroCrossing~.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/README.md -------------------------------------------------------------------------------- /help/attackTime-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/attackTime-help.pd -------------------------------------------------------------------------------- /help/attackTime~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/attackTime~-help.pd -------------------------------------------------------------------------------- /help/audio/drum-loop-1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/audio/drum-loop-1.wav -------------------------------------------------------------------------------- /help/audio/drum-loop-2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/audio/drum-loop-2.wav -------------------------------------------------------------------------------- /help/audio/satie.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/audio/satie.wav -------------------------------------------------------------------------------- /help/audio/testing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/audio/testing.wav -------------------------------------------------------------------------------- /help/audio/training.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/audio/training.wav -------------------------------------------------------------------------------- /help/audio/voice2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/audio/voice2.wav -------------------------------------------------------------------------------- /help/autoCorrPitch-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/autoCorrPitch-help.pd -------------------------------------------------------------------------------- /help/autoCorrPitch~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/autoCorrPitch~-help.pd -------------------------------------------------------------------------------- /help/bark-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/bark-help.pd -------------------------------------------------------------------------------- /help/barkSpec-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpec-help.pd -------------------------------------------------------------------------------- /help/barkSpecBrightness-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecBrightness-help.pd -------------------------------------------------------------------------------- /help/barkSpecBrightness~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecBrightness~-help.pd -------------------------------------------------------------------------------- /help/barkSpecCentroid-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecCentroid-help.pd -------------------------------------------------------------------------------- /help/barkSpecCentroid~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecCentroid~-help.pd -------------------------------------------------------------------------------- /help/barkSpecFlatness-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecFlatness-help.pd -------------------------------------------------------------------------------- /help/barkSpecFlatness~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecFlatness~-help.pd -------------------------------------------------------------------------------- /help/barkSpecFlux-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecFlux-help.pd -------------------------------------------------------------------------------- /help/barkSpecFlux~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecFlux~-help.pd -------------------------------------------------------------------------------- /help/barkSpecIrregularity-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecIrregularity-help.pd -------------------------------------------------------------------------------- /help/barkSpecIrregularity~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecIrregularity~-help.pd -------------------------------------------------------------------------------- /help/barkSpecKurtosis-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecKurtosis-help.pd -------------------------------------------------------------------------------- /help/barkSpecKurtosis~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecKurtosis~-help.pd -------------------------------------------------------------------------------- /help/barkSpecRolloff-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecRolloff-help.pd -------------------------------------------------------------------------------- /help/barkSpecRolloff~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecRolloff~-help.pd -------------------------------------------------------------------------------- /help/barkSpecSkewness-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecSkewness-help.pd -------------------------------------------------------------------------------- /help/barkSpecSkewness~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecSkewness~-help.pd -------------------------------------------------------------------------------- /help/barkSpecSlope-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecSlope-help.pd -------------------------------------------------------------------------------- /help/barkSpecSlope~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecSlope~-help.pd -------------------------------------------------------------------------------- /help/barkSpecSpread-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecSpread-help.pd -------------------------------------------------------------------------------- /help/barkSpecSpread~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpecSpread~-help.pd -------------------------------------------------------------------------------- /help/barkSpec~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/barkSpec~-help.pd -------------------------------------------------------------------------------- /help/bark~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/bark~-help.pd -------------------------------------------------------------------------------- /help/bfcc-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/bfcc-help.pd -------------------------------------------------------------------------------- /help/bfcc~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/bfcc~-help.pd -------------------------------------------------------------------------------- /help/binWrangler-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/binWrangler-help.pd -------------------------------------------------------------------------------- /help/cepstrum-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/cepstrum-help.pd -------------------------------------------------------------------------------- /help/cepstrumPitch-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/cepstrumPitch-help.pd -------------------------------------------------------------------------------- /help/cepstrumPitch~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/cepstrumPitch~-help.pd -------------------------------------------------------------------------------- /help/cepstrum~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/cepstrum~-help.pd -------------------------------------------------------------------------------- /help/chroma-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/chroma-help.pd -------------------------------------------------------------------------------- /help/chroma~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/chroma~-help.pd -------------------------------------------------------------------------------- /help/data/cluster.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/data/cluster.txt -------------------------------------------------------------------------------- /help/data/tID-help-labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/data/tID-help-labels.txt -------------------------------------------------------------------------------- /help/dct-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/dct-help.pd -------------------------------------------------------------------------------- /help/dct~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/dct~-help.pd -------------------------------------------------------------------------------- /help/energy-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/energy-help.pd -------------------------------------------------------------------------------- /help/energyEntropy-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/energyEntropy-help.pd -------------------------------------------------------------------------------- /help/energyEntropy~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/energyEntropy~-help.pd -------------------------------------------------------------------------------- /help/energy~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/energy~-help.pd -------------------------------------------------------------------------------- /help/featureAccum-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/featureAccum-help.pd -------------------------------------------------------------------------------- /help/featureDelta-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/featureDelta-help.pd -------------------------------------------------------------------------------- /help/featureNorm-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/featureNorm-help.pd -------------------------------------------------------------------------------- /help/harmonicRatio-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/harmonicRatio-help.pd -------------------------------------------------------------------------------- /help/harmonicRatio~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/harmonicRatio~-help.pd -------------------------------------------------------------------------------- /help/magSpec-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/magSpec-help.pd -------------------------------------------------------------------------------- /help/magSpec~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/magSpec~-help.pd -------------------------------------------------------------------------------- /help/maxSample-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/maxSample-help.pd -------------------------------------------------------------------------------- /help/maxSampleDelta-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/maxSampleDelta-help.pd -------------------------------------------------------------------------------- /help/maxSampleDelta~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/maxSampleDelta~-help.pd -------------------------------------------------------------------------------- /help/maxSample~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/maxSample~-help.pd -------------------------------------------------------------------------------- /help/melSpec-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/melSpec-help.pd -------------------------------------------------------------------------------- /help/melSpec~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/melSpec~-help.pd -------------------------------------------------------------------------------- /help/mfcc-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/mfcc-help.pd -------------------------------------------------------------------------------- /help/mfcc~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/mfcc~-help.pd -------------------------------------------------------------------------------- /help/minSample-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/minSample-help.pd -------------------------------------------------------------------------------- /help/minSampleDelta-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/minSampleDelta-help.pd -------------------------------------------------------------------------------- /help/minSampleDelta~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/minSampleDelta~-help.pd -------------------------------------------------------------------------------- /help/minSample~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/minSample~-help.pd -------------------------------------------------------------------------------- /help/nearestPoint-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/nearestPoint-help.pd -------------------------------------------------------------------------------- /help/peakSample-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/peakSample-help.pd -------------------------------------------------------------------------------- /help/peakSample~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/peakSample~-help.pd -------------------------------------------------------------------------------- /help/phaseSpec-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/phaseSpec-help.pd -------------------------------------------------------------------------------- /help/phaseSpec~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/phaseSpec~-help.pd -------------------------------------------------------------------------------- /help/sampleBuffer~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/sampleBuffer~-help.pd -------------------------------------------------------------------------------- /help/specBrightness-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specBrightness-help.pd -------------------------------------------------------------------------------- /help/specBrightness~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specBrightness~-help.pd -------------------------------------------------------------------------------- /help/specCentroid-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specCentroid-help.pd -------------------------------------------------------------------------------- /help/specCentroid~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specCentroid~-help.pd -------------------------------------------------------------------------------- /help/specFlatness-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specFlatness-help.pd -------------------------------------------------------------------------------- /help/specFlatness~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specFlatness~-help.pd -------------------------------------------------------------------------------- /help/specFlux-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specFlux-help.pd -------------------------------------------------------------------------------- /help/specFlux~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specFlux~-help.pd -------------------------------------------------------------------------------- /help/specHarmonicity-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specHarmonicity-help.pd -------------------------------------------------------------------------------- /help/specHarmonicity~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specHarmonicity~-help.pd -------------------------------------------------------------------------------- /help/specIrregularity-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specIrregularity-help.pd -------------------------------------------------------------------------------- /help/specIrregularity~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specIrregularity~-help.pd -------------------------------------------------------------------------------- /help/specKurtosis-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specKurtosis-help.pd -------------------------------------------------------------------------------- /help/specKurtosis~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specKurtosis~-help.pd -------------------------------------------------------------------------------- /help/specRolloff-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specRolloff-help.pd -------------------------------------------------------------------------------- /help/specRolloff~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specRolloff~-help.pd -------------------------------------------------------------------------------- /help/specSkewness-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specSkewness-help.pd -------------------------------------------------------------------------------- /help/specSkewness~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specSkewness~-help.pd -------------------------------------------------------------------------------- /help/specSlope-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specSlope-help.pd -------------------------------------------------------------------------------- /help/specSlope~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specSlope~-help.pd -------------------------------------------------------------------------------- /help/specSpread-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specSpread-help.pd -------------------------------------------------------------------------------- /help/specSpread~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/specSpread~-help.pd -------------------------------------------------------------------------------- /help/tID-conversion-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/tID-conversion-help.pd -------------------------------------------------------------------------------- /help/tID_fft-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/tID_fft-help.pd -------------------------------------------------------------------------------- /help/tID_fft~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/tID_fft~-help.pd -------------------------------------------------------------------------------- /help/tID_mean-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/tID_mean-help.pd -------------------------------------------------------------------------------- /help/tID_std-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/tID_std-help.pd -------------------------------------------------------------------------------- /help/tabletool-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/tabletool-help.pd -------------------------------------------------------------------------------- /help/tempo~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/tempo~-help.pd -------------------------------------------------------------------------------- /help/timbreID-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/timbreID-help.pd -------------------------------------------------------------------------------- /help/waveNoise-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/waveNoise-help.pd -------------------------------------------------------------------------------- /help/waveNoise~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/waveNoise~-help.pd -------------------------------------------------------------------------------- /help/waveSlope-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/waveSlope-help.pd -------------------------------------------------------------------------------- /help/waveSlope~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/waveSlope~-help.pd -------------------------------------------------------------------------------- /help/zeroCrossing-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/zeroCrossing-help.pd -------------------------------------------------------------------------------- /help/zeroCrossing~-help.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/help/zeroCrossing~-help.pd -------------------------------------------------------------------------------- /include/tIDLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/include/tIDLib.h -------------------------------------------------------------------------------- /pd-lib-builder/Makefile.pdlibbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/pd-lib-builder/Makefile.pdlibbuilder -------------------------------------------------------------------------------- /src/attackTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/attackTime.c -------------------------------------------------------------------------------- /src/attackTime~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/attackTime~.c -------------------------------------------------------------------------------- /src/autoCorrPitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/autoCorrPitch.c -------------------------------------------------------------------------------- /src/autoCorrPitch~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/autoCorrPitch~.c -------------------------------------------------------------------------------- /src/bark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/bark.c -------------------------------------------------------------------------------- /src/bark2freq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/bark2freq.c -------------------------------------------------------------------------------- /src/barkSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpec.c -------------------------------------------------------------------------------- /src/barkSpecBrightness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecBrightness.c -------------------------------------------------------------------------------- /src/barkSpecBrightness~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecBrightness~.c -------------------------------------------------------------------------------- /src/barkSpecCentroid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecCentroid.c -------------------------------------------------------------------------------- /src/barkSpecCentroid~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecCentroid~.c -------------------------------------------------------------------------------- /src/barkSpecFlatness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecFlatness.c -------------------------------------------------------------------------------- /src/barkSpecFlatness~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecFlatness~.c -------------------------------------------------------------------------------- /src/barkSpecFlux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecFlux.c -------------------------------------------------------------------------------- /src/barkSpecFlux~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecFlux~.c -------------------------------------------------------------------------------- /src/barkSpecIrregularity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecIrregularity.c -------------------------------------------------------------------------------- /src/barkSpecIrregularity~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecIrregularity~.c -------------------------------------------------------------------------------- /src/barkSpecKurtosis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecKurtosis.c -------------------------------------------------------------------------------- /src/barkSpecKurtosis~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecKurtosis~.c -------------------------------------------------------------------------------- /src/barkSpecRolloff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecRolloff.c -------------------------------------------------------------------------------- /src/barkSpecRolloff~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecRolloff~.c -------------------------------------------------------------------------------- /src/barkSpecSkewness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecSkewness.c -------------------------------------------------------------------------------- /src/barkSpecSkewness~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecSkewness~.c -------------------------------------------------------------------------------- /src/barkSpecSlope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecSlope.c -------------------------------------------------------------------------------- /src/barkSpecSlope~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecSlope~.c -------------------------------------------------------------------------------- /src/barkSpecSpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecSpread.c -------------------------------------------------------------------------------- /src/barkSpecSpread~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpecSpread~.c -------------------------------------------------------------------------------- /src/barkSpec~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/barkSpec~.c -------------------------------------------------------------------------------- /src/bark~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/bark~.c -------------------------------------------------------------------------------- /src/bfcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/bfcc.c -------------------------------------------------------------------------------- /src/bfcc~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/bfcc~.c -------------------------------------------------------------------------------- /src/bin2freq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/bin2freq.c -------------------------------------------------------------------------------- /src/binWrangler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/binWrangler.c -------------------------------------------------------------------------------- /src/cepstrum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/cepstrum.c -------------------------------------------------------------------------------- /src/cepstrumPitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/cepstrumPitch.c -------------------------------------------------------------------------------- /src/cepstrumPitch~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/cepstrumPitch~.c -------------------------------------------------------------------------------- /src/cepstrum~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/cepstrum~.c -------------------------------------------------------------------------------- /src/chroma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/chroma.c -------------------------------------------------------------------------------- /src/chroma~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/chroma~.c -------------------------------------------------------------------------------- /src/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/dct.c -------------------------------------------------------------------------------- /src/dct~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/dct~.c -------------------------------------------------------------------------------- /src/energy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/energy.c -------------------------------------------------------------------------------- /src/energyEntropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/energyEntropy.c -------------------------------------------------------------------------------- /src/energyEntropy~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/energyEntropy~.c -------------------------------------------------------------------------------- /src/energy~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/energy~.c -------------------------------------------------------------------------------- /src/featureAccum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/featureAccum.c -------------------------------------------------------------------------------- /src/featureDelta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/featureDelta.c -------------------------------------------------------------------------------- /src/featureNorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/featureNorm.c -------------------------------------------------------------------------------- /src/freq2bark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/freq2bark.c -------------------------------------------------------------------------------- /src/freq2bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/freq2bin.c -------------------------------------------------------------------------------- /src/freq2mel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/freq2mel.c -------------------------------------------------------------------------------- /src/harmonicRatio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/harmonicRatio.c -------------------------------------------------------------------------------- /src/harmonicRatio~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/harmonicRatio~.c -------------------------------------------------------------------------------- /src/magSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/magSpec.c -------------------------------------------------------------------------------- /src/magSpec~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/magSpec~.c -------------------------------------------------------------------------------- /src/maxSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/maxSample.c -------------------------------------------------------------------------------- /src/maxSampleDelta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/maxSampleDelta.c -------------------------------------------------------------------------------- /src/maxSampleDelta~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/maxSampleDelta~.c -------------------------------------------------------------------------------- /src/maxSample~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/maxSample~.c -------------------------------------------------------------------------------- /src/mel2freq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/mel2freq.c -------------------------------------------------------------------------------- /src/melSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/melSpec.c -------------------------------------------------------------------------------- /src/melSpec~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/melSpec~.c -------------------------------------------------------------------------------- /src/mfcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/mfcc.c -------------------------------------------------------------------------------- /src/mfcc~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/mfcc~.c -------------------------------------------------------------------------------- /src/minSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/minSample.c -------------------------------------------------------------------------------- /src/minSampleDelta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/minSampleDelta.c -------------------------------------------------------------------------------- /src/minSampleDelta~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/minSampleDelta~.c -------------------------------------------------------------------------------- /src/minSample~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/minSample~.c -------------------------------------------------------------------------------- /src/nearestPoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/nearestPoint.c -------------------------------------------------------------------------------- /src/peakSample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/peakSample.c -------------------------------------------------------------------------------- /src/peakSample~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/peakSample~.c -------------------------------------------------------------------------------- /src/phaseSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/phaseSpec.c -------------------------------------------------------------------------------- /src/phaseSpec~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/phaseSpec~.c -------------------------------------------------------------------------------- /src/sampleBuffer~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/sampleBuffer~.c -------------------------------------------------------------------------------- /src/specBrightness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specBrightness.c -------------------------------------------------------------------------------- /src/specBrightness~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specBrightness~.c -------------------------------------------------------------------------------- /src/specCentroid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specCentroid.c -------------------------------------------------------------------------------- /src/specCentroid~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specCentroid~.c -------------------------------------------------------------------------------- /src/specFlatness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specFlatness.c -------------------------------------------------------------------------------- /src/specFlatness~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specFlatness~.c -------------------------------------------------------------------------------- /src/specFlux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specFlux.c -------------------------------------------------------------------------------- /src/specFlux~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specFlux~.c -------------------------------------------------------------------------------- /src/specHarmonicity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specHarmonicity.c -------------------------------------------------------------------------------- /src/specHarmonicity~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specHarmonicity~.c -------------------------------------------------------------------------------- /src/specIrregularity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specIrregularity.c -------------------------------------------------------------------------------- /src/specIrregularity~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specIrregularity~.c -------------------------------------------------------------------------------- /src/specKurtosis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specKurtosis.c -------------------------------------------------------------------------------- /src/specKurtosis~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specKurtosis~.c -------------------------------------------------------------------------------- /src/specRolloff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specRolloff.c -------------------------------------------------------------------------------- /src/specRolloff~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specRolloff~.c -------------------------------------------------------------------------------- /src/specSkewness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specSkewness.c -------------------------------------------------------------------------------- /src/specSkewness~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specSkewness~.c -------------------------------------------------------------------------------- /src/specSlope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specSlope.c -------------------------------------------------------------------------------- /src/specSlope~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specSlope~.c -------------------------------------------------------------------------------- /src/specSpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specSpread.c -------------------------------------------------------------------------------- /src/specSpread~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/specSpread~.c -------------------------------------------------------------------------------- /src/tIDLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/tIDLib.c -------------------------------------------------------------------------------- /src/tID_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/tID_fft.c -------------------------------------------------------------------------------- /src/tID_fft~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/tID_fft~.c -------------------------------------------------------------------------------- /src/tID_mean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/tID_mean.c -------------------------------------------------------------------------------- /src/tID_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/tID_std.c -------------------------------------------------------------------------------- /src/tabletool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/tabletool.c -------------------------------------------------------------------------------- /src/tempo~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/tempo~.c -------------------------------------------------------------------------------- /src/timbreID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/timbreID.c -------------------------------------------------------------------------------- /src/timbreIDLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/timbreIDLib.c -------------------------------------------------------------------------------- /src/waveNoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/waveNoise.c -------------------------------------------------------------------------------- /src/waveNoise~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/waveNoise~.c -------------------------------------------------------------------------------- /src/waveSlope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/waveSlope.c -------------------------------------------------------------------------------- /src/waveSlope~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/waveSlope~.c -------------------------------------------------------------------------------- /src/zeroCrossing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/zeroCrossing.c -------------------------------------------------------------------------------- /src/zeroCrossing~.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbrent/timbreIDLib/HEAD/src/zeroCrossing~.c --------------------------------------------------------------------------------