├── .gitignore ├── LICENSE ├── MATLAB:Weka Timbral Reverb ├── Logistic_classifier_Weka_D5.6.model ├── Reverb_AC_SS_V4.m └── src │ ├── Filters │ ├── bwFilter.m │ ├── filterObj.m │ ├── gammatoneFilter.m │ ├── genericFilter.m │ └── leakyIntegratorFilter.m │ ├── Multiplemfiles.m │ ├── Parameter_handling │ ├── Parameters.m │ ├── genParStruct.m │ └── parameterHelper.m │ ├── Processors │ ├── Processor.m │ ├── adaptationProc.m │ ├── autocorrelationProc.m │ ├── ccFeatureProc.m │ ├── crosscorrelationProc.m │ ├── downSamplerProc.m │ ├── drnlProc.m │ ├── duetProc.m │ ├── emptyProc.m │ ├── framingProc.m │ ├── gaborProc.m │ ├── gammatoneProc.m │ ├── icProc.m │ ├── identityProc.m │ ├── ihcProc.m │ ├── ildProc.m │ ├── itdProc.m │ ├── mocProc.m │ ├── modulationProc.m │ ├── offsetMapProc.m │ ├── offsetProc.m │ ├── onsetMapProc.m │ ├── onsetProc.m │ ├── pitchProc.m │ ├── preProc.m │ ├── precedenceProc.m │ ├── ratemapProc.m │ ├── spectralFeaturesProc.m │ ├── stftProc.m │ └── templateProc.m │ ├── README.md │ ├── RT_estimation_my.m │ ├── Signals │ ├── BinaryMask.m │ ├── CorrelationSignal.m │ ├── DuetHistogramSignal.m │ ├── FeatureSignal.m │ ├── FramedSignal.m │ ├── ModulationSignal.m │ ├── STFTSignal.m │ ├── Signal.m │ ├── SpectralFeaturesSignal.m │ ├── TimeDomainSignal.m │ ├── TimeFrequencySignal.m │ ├── circVBuf.m │ ├── circVBufArrayInterface.m │ ├── circVBufC.m │ └── dataObject.m │ ├── Tools │ ├── Hashable.m │ ├── RAA_group_indices.m │ ├── RAA_param_configuration.m │ ├── RAA_sigmoid_scaling.m │ ├── adpt_thresholdmu.m │ ├── afeRAA.m │ ├── agc.m │ ├── applyCenterClipping.m │ ├── argmax.m │ ├── argmin.m │ ├── arrange.m │ ├── assert_sigreshape_post.m │ ├── assert_sigreshape_pre.m │ ├── ath_terhardt.m │ ├── calcACorr.m │ ├── calcLocalizationError.m │ ├── calcXCorr.m │ ├── colormapVoicebox.m │ ├── copyFields.m │ ├── createFB_Mod.m │ ├── createFreqAxisLog.m │ ├── data_goode1994.m │ ├── data_lopezpoveda2001.m │ ├── data_pralong1996.m │ ├── db2amp.m │ ├── dbspl.m │ ├── detectOnsetsOffsets.m │ ├── erb2freq.m │ ├── estPitch_SACF.m │ ├── evalPerformance.m │ ├── findpeaks_VB.m │ ├── fireprint.m │ ├── frameData.m │ ├── freq2erb.m │ ├── gaindb.m │ ├── gbfb.m │ ├── genFilter.m │ ├── headphonefilter.m │ ├── headphonefilter_Dorp2011.m │ ├── interpolateParabolic.m │ ├── isStable.m │ ├── leakyIntegrator.m │ ├── listFiles.m │ ├── ltfatarghelper.m │ ├── melbankm.m │ ├── middleearfilter.m │ ├── normalizeData.m │ ├── pinknoise.m │ ├── prec_acmod.m │ ├── prec_anaone.m │ ├── prec_de_conv.m │ ├── prec_peakratio.m │ ├── prec_reconHW.m │ ├── prec_rev_conv.m │ ├── private │ │ ├── frameDataMEX.cpp │ │ ├── frameDataMEX.m │ │ ├── frameDataMEX.mexa64 │ │ ├── frameDataMEX.mexglx │ │ ├── frameDataMEX.mexmaci64 │ │ ├── frameDataMEX.mexw32 │ │ ├── frameDataMEX.mexw64 │ │ ├── normalizeMEX.cpp │ │ ├── normalizeMEX.m │ │ ├── normalizeMEX.mexa64 │ │ ├── normalizeMEX.mexglx │ │ ├── normalizeMEX.mexmaci64 │ │ ├── normalizeMEX.mexw32 │ │ └── normalizeMEX.mexw64 │ ├── readAudio.m │ ├── rms.m │ ├── selectCells.m │ ├── selectPeaks.m │ ├── setdbspl.m │ ├── signalBraasch.m │ ├── stimulusBraasch.m │ ├── stimulusCustomBraasch.m │ └── waveplot.m │ ├── generate_rev_speech.m │ ├── init_rt_estimate_e.m │ ├── manager.m │ ├── requestList.m │ └── rt_estimate_frame_my.m ├── README.md ├── Version history.md ├── dist ├── timbral_models-0.1.tar.gz ├── timbral_models-0.2.0.tar.gz ├── timbral_models-0.2.1.tar.gz └── timbral_models-0.2.2.tar.gz ├── setup.cfg ├── setup.py ├── timbral_models.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── not-zip-safe ├── requires.txt └── top_level.txt └── timbral_models ├── Timbral_Booming.py ├── Timbral_Brightness.py ├── Timbral_Depth.py ├── Timbral_Extractor.py ├── Timbral_Hardness.py ├── Timbral_Reverb.py ├── Timbral_Roughness.py ├── Timbral_Sharpness.py ├── Timbral_Warmth.py ├── __init__.py └── timbral_util.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/LICENSE -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/Logistic_classifier_Weka_D5.6.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/Logistic_classifier_Weka_D5.6.model -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/Reverb_AC_SS_V4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/Reverb_AC_SS_V4.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Filters/bwFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Filters/bwFilter.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Filters/filterObj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Filters/filterObj.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Filters/gammatoneFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Filters/gammatoneFilter.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Filters/genericFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Filters/genericFilter.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Filters/leakyIntegratorFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Filters/leakyIntegratorFilter.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Multiplemfiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Multiplemfiles.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Parameter_handling/Parameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Parameter_handling/Parameters.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Parameter_handling/genParStruct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Parameter_handling/genParStruct.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Parameter_handling/parameterHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Parameter_handling/parameterHelper.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/Processor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/Processor.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/adaptationProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/adaptationProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/autocorrelationProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/autocorrelationProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/ccFeatureProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/ccFeatureProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/crosscorrelationProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/crosscorrelationProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/downSamplerProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/downSamplerProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/drnlProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/drnlProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/duetProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/duetProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/emptyProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/emptyProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/framingProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/framingProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/gaborProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/gaborProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/gammatoneProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/gammatoneProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/icProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/icProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/identityProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/identityProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/ihcProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/ihcProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/ildProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/ildProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/itdProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/itdProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/mocProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/mocProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/modulationProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/modulationProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/offsetMapProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/offsetMapProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/offsetProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/offsetProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/onsetMapProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/onsetMapProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/onsetProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/onsetProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/pitchProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/pitchProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/preProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/preProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/precedenceProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/precedenceProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/ratemapProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/ratemapProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/spectralFeaturesProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/spectralFeaturesProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/stftProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/stftProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Processors/templateProc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Processors/templateProc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/README.md -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/RT_estimation_my.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/RT_estimation_my.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/BinaryMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/BinaryMask.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/CorrelationSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/CorrelationSignal.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/DuetHistogramSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/DuetHistogramSignal.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/FeatureSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/FeatureSignal.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/FramedSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/FramedSignal.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/ModulationSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/ModulationSignal.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/STFTSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/STFTSignal.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/Signal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/Signal.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/SpectralFeaturesSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/SpectralFeaturesSignal.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/TimeDomainSignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/TimeDomainSignal.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/TimeFrequencySignal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/TimeFrequencySignal.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/circVBuf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/circVBuf.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/circVBufArrayInterface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/circVBufArrayInterface.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/circVBufC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/circVBufC.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Signals/dataObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Signals/dataObject.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/Hashable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/Hashable.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/RAA_group_indices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/RAA_group_indices.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/RAA_param_configuration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/RAA_param_configuration.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/RAA_sigmoid_scaling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/RAA_sigmoid_scaling.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/adpt_thresholdmu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/adpt_thresholdmu.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/afeRAA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/afeRAA.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/agc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/agc.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/applyCenterClipping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/applyCenterClipping.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/argmax.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/argmax.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/argmin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/argmin.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/arrange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/arrange.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/assert_sigreshape_post.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/assert_sigreshape_post.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/assert_sigreshape_pre.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/assert_sigreshape_pre.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/ath_terhardt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/ath_terhardt.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/calcACorr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/calcACorr.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/calcLocalizationError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/calcLocalizationError.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/calcXCorr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/calcXCorr.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/colormapVoicebox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/colormapVoicebox.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/copyFields.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/copyFields.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/createFB_Mod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/createFB_Mod.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/createFreqAxisLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/createFreqAxisLog.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/data_goode1994.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/data_goode1994.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/data_lopezpoveda2001.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/data_lopezpoveda2001.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/data_pralong1996.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/data_pralong1996.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/db2amp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/db2amp.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/dbspl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/dbspl.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/detectOnsetsOffsets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/detectOnsetsOffsets.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/erb2freq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/erb2freq.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/estPitch_SACF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/estPitch_SACF.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/evalPerformance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/evalPerformance.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/findpeaks_VB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/findpeaks_VB.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/fireprint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/fireprint.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/frameData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/frameData.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/freq2erb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/freq2erb.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/gaindb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/gaindb.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/gbfb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/gbfb.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/genFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/genFilter.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/headphonefilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/headphonefilter.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/headphonefilter_Dorp2011.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/headphonefilter_Dorp2011.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/interpolateParabolic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/interpolateParabolic.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/isStable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/isStable.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/leakyIntegrator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/leakyIntegrator.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/listFiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/listFiles.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/ltfatarghelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/ltfatarghelper.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/melbankm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/melbankm.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/middleearfilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/middleearfilter.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/normalizeData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/normalizeData.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/pinknoise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/pinknoise.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/prec_acmod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/prec_acmod.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/prec_anaone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/prec_anaone.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/prec_de_conv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/prec_de_conv.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/prec_peakratio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/prec_peakratio.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/prec_reconHW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/prec_reconHW.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/prec_rev_conv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/prec_rev_conv.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/private/frameDataMEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/private/frameDataMEX.cpp -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/private/frameDataMEX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/private/frameDataMEX.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/private/frameDataMEX.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/private/frameDataMEX.mexa64 -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/private/frameDataMEX.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/private/frameDataMEX.mexglx -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/private/frameDataMEX.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/private/frameDataMEX.mexmaci64 -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/private/frameDataMEX.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/private/frameDataMEX.mexw32 -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/private/frameDataMEX.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/private/frameDataMEX.mexw64 -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/private/normalizeMEX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/private/normalizeMEX.cpp -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/private/normalizeMEX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/private/normalizeMEX.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/private/normalizeMEX.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/private/normalizeMEX.mexa64 -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/private/normalizeMEX.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/private/normalizeMEX.mexglx -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/private/normalizeMEX.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/private/normalizeMEX.mexmaci64 -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/private/normalizeMEX.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/private/normalizeMEX.mexw32 -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/private/normalizeMEX.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/private/normalizeMEX.mexw64 -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/readAudio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/readAudio.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/rms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/rms.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/selectCells.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/selectCells.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/selectPeaks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/selectPeaks.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/setdbspl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/setdbspl.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/signalBraasch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/signalBraasch.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/stimulusBraasch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/stimulusBraasch.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/stimulusCustomBraasch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/stimulusCustomBraasch.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/Tools/waveplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/Tools/waveplot.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/generate_rev_speech.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/generate_rev_speech.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/init_rt_estimate_e.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/init_rt_estimate_e.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/manager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/manager.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/requestList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/requestList.m -------------------------------------------------------------------------------- /MATLAB:Weka Timbral Reverb/src/rt_estimate_frame_my.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/MATLAB:Weka Timbral Reverb/src/rt_estimate_frame_my.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/README.md -------------------------------------------------------------------------------- /Version history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/Version history.md -------------------------------------------------------------------------------- /dist/timbral_models-0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/dist/timbral_models-0.1.tar.gz -------------------------------------------------------------------------------- /dist/timbral_models-0.2.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/dist/timbral_models-0.2.0.tar.gz -------------------------------------------------------------------------------- /dist/timbral_models-0.2.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/dist/timbral_models-0.2.1.tar.gz -------------------------------------------------------------------------------- /dist/timbral_models-0.2.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/dist/timbral_models-0.2.2.tar.gz -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/setup.py -------------------------------------------------------------------------------- /timbral_models.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/timbral_models.egg-info/PKG-INFO -------------------------------------------------------------------------------- /timbral_models.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/timbral_models.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /timbral_models.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /timbral_models.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /timbral_models.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | soundfile 3 | scipy 4 | librosa 5 | sklearn 6 | -------------------------------------------------------------------------------- /timbral_models.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | timbral_models 2 | -------------------------------------------------------------------------------- /timbral_models/Timbral_Booming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/timbral_models/Timbral_Booming.py -------------------------------------------------------------------------------- /timbral_models/Timbral_Brightness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/timbral_models/Timbral_Brightness.py -------------------------------------------------------------------------------- /timbral_models/Timbral_Depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/timbral_models/Timbral_Depth.py -------------------------------------------------------------------------------- /timbral_models/Timbral_Extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/timbral_models/Timbral_Extractor.py -------------------------------------------------------------------------------- /timbral_models/Timbral_Hardness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/timbral_models/Timbral_Hardness.py -------------------------------------------------------------------------------- /timbral_models/Timbral_Reverb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/timbral_models/Timbral_Reverb.py -------------------------------------------------------------------------------- /timbral_models/Timbral_Roughness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/timbral_models/Timbral_Roughness.py -------------------------------------------------------------------------------- /timbral_models/Timbral_Sharpness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/timbral_models/Timbral_Sharpness.py -------------------------------------------------------------------------------- /timbral_models/Timbral_Warmth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/timbral_models/Timbral_Warmth.py -------------------------------------------------------------------------------- /timbral_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/timbral_models/__init__.py -------------------------------------------------------------------------------- /timbral_models/timbral_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AudioCommons/timbral_models/HEAD/timbral_models/timbral_util.py --------------------------------------------------------------------------------