├── INSTALL ├── Makefile ├── README.md ├── tools ├── REAPER │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── core │ │ ├── file_resource.cc │ │ ├── file_resource.h │ │ ├── float_matrix-inl.h │ │ ├── float_matrix.cc │ │ ├── float_matrix.h │ │ ├── track.cc │ │ └── track.h │ ├── epoch_tracker │ │ ├── epoch_tracker.cc │ │ ├── epoch_tracker.h │ │ ├── fd_filter.cc │ │ ├── fd_filter.h │ │ ├── fft.cc │ │ ├── fft.h │ │ ├── lpc_analyzer.cc │ │ └── lpc_analyzer.h │ ├── epoch_tracker_main.cc │ └── wave │ │ ├── codec_api-inl.h │ │ ├── codec_api.h │ │ ├── codec_riff.cc │ │ ├── codec_riff.h │ │ ├── wave.cc │ │ ├── wave.h │ │ ├── wave_io-inl.h │ │ ├── wave_io.cc │ │ └── wave_io.h ├── SPTK-3.9 │ ├── AUTHORS │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── Makefile.mak │ ├── NEWS │ ├── README │ ├── aclocal.m4 │ ├── bin │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.mak │ │ ├── acep │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _acep.c │ │ │ └── acep.c │ │ ├── acorr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _acorr.c │ │ │ └── acorr.c │ │ ├── agcep │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _agcep.c │ │ │ └── agcep.c │ │ ├── amcep │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _amcep.c │ │ │ └── amcep.c │ │ ├── average │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _average.c │ │ │ └── average.c │ │ ├── b2mc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _b2mc.c │ │ │ └── b2mc.c │ │ ├── bcp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── bcp.c │ │ ├── bcut │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── bcut.c │ │ ├── c2acr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _c2acr.c │ │ │ └── c2acr.c │ │ ├── c2ir │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _c2ir.c │ │ │ └── c2ir.c │ │ ├── c2ndps │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _c2ndps.c │ │ │ └── c2ndps.c │ │ ├── c2sp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _c2sp.c │ │ │ └── c2sp.c │ │ ├── cat2 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── cat2.c │ │ ├── cdist │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── cdist.c │ │ ├── clip │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _clip.c │ │ │ └── clip.c │ │ ├── da │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── da.h │ │ │ ├── da.in │ │ │ ├── dawrite.c │ │ │ ├── winplay.c │ │ │ └── winplay.h │ │ ├── dct │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _dct.c │ │ │ └── dct.c │ │ ├── decimate │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── decimate.c │ │ ├── delay │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── delay.c │ │ ├── delta │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── delta.c │ │ ├── df2 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _df2.c │ │ │ └── df2.c │ │ ├── dfs │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _dfs.c │ │ │ └── dfs.c │ │ ├── dmp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── dmp.c │ │ ├── ds │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── ds.c │ │ │ ├── lpfcoef.2to1 │ │ │ ├── lpfcoef.3to2 │ │ │ ├── lpfcoef.4to3 │ │ │ ├── lpfcoef.5to2dn │ │ │ ├── lpfcoef.5to2up │ │ │ └── titech │ │ │ │ ├── COPYING │ │ │ │ └── lpfcoef.7to4 │ │ ├── dtw │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── dtw.c │ │ ├── echo2 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── echo2.c │ │ ├── excite │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── excite.c │ │ ├── extract │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── extract.c │ │ ├── fd │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── fd.c │ │ ├── fft │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _fft.c │ │ │ └── fft.c │ │ ├── fft2 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _fft2.c │ │ │ └── fft2.c │ │ ├── fftcep │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _fftcep.c │ │ │ └── fftcep.c │ │ ├── fftr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _fftr.c │ │ │ └── fftr.c │ │ ├── fftr2 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _fftr2.c │ │ │ └── fftr2.c │ │ ├── fig+fdrw │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── fdrw.c │ │ │ ├── fig.c │ │ │ ├── fig.h │ │ │ ├── fig0.c │ │ │ ├── fig1.c │ │ │ ├── plot.c │ │ │ ├── plot.h │ │ │ └── plsub.c │ │ ├── frame │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── frame.c │ │ ├── freqt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _freqt.c │ │ │ └── freqt.c │ │ ├── gc2gc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _gc2gc.c │ │ │ └── gc2gc.c │ │ ├── gcep │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _gcep.c │ │ │ └── gcep.c │ │ ├── glsadf │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _glsadf.c │ │ │ └── glsadf.c │ │ ├── gmm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _gmm.c │ │ │ ├── gmm.c │ │ │ └── gmmp.c │ │ ├── gnorm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _gnorm.c │ │ │ └── gnorm.c │ │ ├── grpdelay │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _grpdelay.c │ │ │ └── grpdelay.c │ │ ├── histogram │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _histogram.c │ │ │ └── histogram.c │ │ ├── idct │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── idct.c │ │ ├── ifft │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _ifft.c │ │ │ └── ifft.c │ │ ├── ifft2 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _ifft2.c │ │ │ └── ifft2.c │ │ ├── ifftr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _ifftr.c │ │ │ └── ifftr.c │ │ ├── ignorm │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _ignorm.c │ │ │ └── ignorm.c │ │ ├── impulse │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── impulse.c │ │ ├── imsvq │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _imsvq.c │ │ │ └── imsvq.c │ │ ├── interpolate │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── interpolate.c │ │ ├── ivq │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _ivq.c │ │ │ └── ivq.c │ │ ├── lbg │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _lbg.c │ │ │ └── lbg.c │ │ ├── levdur │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _levdur.c │ │ │ └── levdur.c │ │ ├── linear_intpl │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── linear_intpl.c │ │ ├── lmadf │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _lmadf.c │ │ │ └── lmadf.c │ │ ├── lpc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _lpc.c │ │ │ └── lpc.c │ │ ├── lpc2c │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _lpc2c.c │ │ │ └── lpc2c.c │ │ ├── lpc2lsp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _lpc2lsp.c │ │ │ └── lpc2lsp.c │ │ ├── lpc2par │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _lpc2par.c │ │ │ └── lpc2par.c │ │ ├── lsp2lpc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _lsp2lpc.c │ │ │ └── lsp2lpc.c │ │ ├── lsp2sp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _lsp2sp.c │ │ │ └── lsp2sp.c │ │ ├── lspcheck │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _lspcheck.c │ │ │ └── lspcheck.c │ │ ├── lspdf │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _lspdf.c │ │ │ └── lspdf.c │ │ ├── ltcdf │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _ltcdf.c │ │ │ └── ltcdf.c │ │ ├── mc2b │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _mc2b.c │ │ │ └── mc2b.c │ │ ├── mcep │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _mcep.c │ │ │ └── mcep.c │ │ ├── merge │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── merge.c │ │ ├── mfcc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _mfcc.c │ │ │ └── mfcc.c │ │ ├── mgc2mgc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _mgc2mgc.c │ │ │ └── mgc2mgc.c │ │ ├── mgc2sp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _mgc2sp.c │ │ │ └── mgc2sp.c │ │ ├── mgcep │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _mgcep.c │ │ │ └── mgcep.c │ │ ├── mgclsp2sp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _mgclsp2sp.c │ │ │ └── mgclsp2sp.c │ │ ├── mglsadf │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _mglsadf.c │ │ │ └── mglsadf.c │ │ ├── minmax │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── minmax.c │ │ ├── mlpg │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _mlpg.c │ │ │ └── mlpg.c │ │ ├── mlsacheck │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── mlsacheck.c │ │ ├── mlsadf │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _mlsadf.c │ │ │ └── mlsadf.c │ │ ├── msvq │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _msvq.c │ │ │ └── msvq.c │ │ ├── nan │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── nan.c │ │ ├── ndps2c │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _ndps2c.c │ │ │ └── ndps2c.c │ │ ├── norm0 │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _norm0.c │ │ │ └── norm0.c │ │ ├── nrand │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _nrand.c │ │ │ └── nrand.c │ │ ├── par2lpc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _par2lpc.c │ │ │ └── par2lpc.c │ │ ├── pca │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── pca.c │ │ │ └── pcas.c │ │ ├── phase │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _phase.c │ │ │ └── phase.c │ │ ├── pitch │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── pitch.c │ │ │ ├── snack │ │ │ │ ├── COPYING │ │ │ │ ├── jkGetF0.c │ │ │ │ ├── jkGetF0.h │ │ │ │ └── sigproc.c │ │ │ └── swipe │ │ │ │ ├── COPYING │ │ │ │ ├── swipe.c │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ ├── poledf │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _poledf.c │ │ │ └── poledf.c │ │ ├── psgr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── dict.c │ │ │ ├── eps.c │ │ │ ├── plot.c │ │ │ ├── psgr.c │ │ │ └── psgr.h │ │ ├── ramp │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── ramp.c │ │ ├── rawtowav │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── rawtowav.c │ │ ├── reverse │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _reverse.c │ │ │ └── reverse.c │ │ ├── rmse │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _rmse.c │ │ │ └── rmse.c │ │ ├── root_pol │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _root_pol.c │ │ │ └── root_pol.c │ │ ├── sin │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── sin.c │ │ ├── smcep │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _smcep.c │ │ │ └── smcep.c │ │ ├── snr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── snr.c │ │ ├── sopr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── sopr.c │ │ ├── spec │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── spec.c │ │ ├── step │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── step.c │ │ ├── swab │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── swab.c │ │ ├── symmetrize │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── symmetrize.c │ │ ├── train │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── train.c │ │ ├── transpose │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _transpose.c │ │ │ └── transpose.c │ │ ├── uels │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _uels.c │ │ │ └── uels.c │ │ ├── ulaw │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _ulaw.c │ │ │ └── ulaw.c │ │ ├── us │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── lpfcoef.2to3f │ │ │ ├── lpfcoef.2to3s │ │ │ ├── lpfcoef.3to4 │ │ │ ├── lpfcoef.4to5 │ │ │ ├── lpfcoef.5to7 │ │ │ ├── lpfcoef.5to8 │ │ │ ├── titech │ │ │ │ ├── COPYING │ │ │ │ ├── lpfcoef.3to5 │ │ │ │ └── lpfcoef.7to8 │ │ │ ├── us.c │ │ │ ├── us16.in │ │ │ └── uscd.in │ │ ├── vc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _vc.c │ │ │ ├── hts_engine_API │ │ │ │ ├── COPYING │ │ │ │ ├── HTS_engine.h │ │ │ │ ├── HTS_hidden.h │ │ │ │ ├── HTS_misc.c │ │ │ │ ├── HTS_pstream.c │ │ │ │ └── HTS_sstream.c │ │ │ └── vc.c │ │ ├── vopr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── vopr.c │ │ ├── vq │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _vq.c │ │ │ └── vq.c │ │ ├── vstat │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── vstat.c │ │ ├── vsum │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── vsum.c │ │ ├── wavjoin │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _wavjoin.c │ │ │ └── wavjoin.c │ │ ├── wavsplit │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _wavsplit.c │ │ │ └── wavsplit.c │ │ ├── window │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _window.c │ │ │ └── window.c │ │ ├── x2x │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── x2x.c │ │ ├── xgr │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── config.h │ │ │ ├── gcdata.h │ │ │ ├── marks │ │ │ │ ├── mark0.dat │ │ │ │ ├── mark1.dat │ │ │ │ ├── mark10.dat │ │ │ │ ├── mark11.dat │ │ │ │ ├── mark12.dat │ │ │ │ ├── mark13.dat │ │ │ │ ├── mark14.dat │ │ │ │ ├── mark15.dat │ │ │ │ ├── mark2.dat │ │ │ │ ├── mark3.dat │ │ │ │ ├── mark4.dat │ │ │ │ ├── mark5.dat │ │ │ │ ├── mark6.dat │ │ │ │ ├── mark7.dat │ │ │ │ ├── mark8.dat │ │ │ │ └── mark9.dat │ │ │ ├── plot.c │ │ │ ├── tills │ │ │ │ ├── till0.dat │ │ │ │ ├── till1.dat │ │ │ │ ├── till10.dat │ │ │ │ ├── till11.dat │ │ │ │ ├── till12.dat │ │ │ │ ├── till13.dat │ │ │ │ ├── till14.dat │ │ │ │ ├── till15.dat │ │ │ │ ├── till16.dat │ │ │ │ ├── till2.dat │ │ │ │ ├── till3.dat │ │ │ │ ├── till4.dat │ │ │ │ ├── till5.dat │ │ │ │ ├── till6.dat │ │ │ │ ├── till7.dat │ │ │ │ ├── till8.dat │ │ │ │ └── till9.dat │ │ │ ├── window.c │ │ │ ├── xgr.c │ │ │ └── xgr.h │ │ ├── zcross │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _zcross.c │ │ │ └── zcross.c │ │ └── zerodf │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── _zerodf.c │ │ │ └── zerodf.c │ ├── config │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ └── missing │ ├── configure │ ├── configure.ac │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.mak │ │ └── SPTK.h │ ├── lib │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.mak │ │ ├── agexp.c │ │ ├── cholesky.c │ │ ├── fileio.c │ │ ├── fillz.c │ │ ├── getfp.c │ │ ├── getmem.c │ │ ├── gexp.c │ │ ├── glog.c │ │ ├── invert.c │ │ ├── matrix.c │ │ ├── movem.c │ │ ├── mseq.c │ │ ├── theq.c │ │ └── toeplitz.c │ └── script │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bell.in │ │ ├── glogsp.in │ │ ├── grlogsp.in │ │ ├── gseries.in │ │ ├── gwave.in │ │ ├── mgc2mgclsp.in │ │ ├── mgclsp2mgc.in │ │ ├── raw2wav.in │ │ └── wav2raw.in ├── World │ ├── .gitignore │ ├── LICENSE.txt │ ├── README.md │ ├── doc │ │ ├── dev_env.txt │ │ ├── readme_ENG.txt │ │ └── readme_JP.txt │ ├── examples │ │ ├── README.md │ │ ├── analysis_synthesis │ │ │ ├── analysis.cpp │ │ │ ├── makefile │ │ │ └── synthesis.cpp │ │ ├── codec_test │ │ │ ├── README.md │ │ │ ├── apanalysis.cpp │ │ │ ├── f0analysis.cpp │ │ │ ├── makefile │ │ │ ├── readandsynthesis.cpp │ │ │ └── spanalysis.cpp │ │ └── parameter_io │ │ │ ├── README.md │ │ │ ├── apanalysis.cpp │ │ │ ├── f0analysis.cpp │ │ │ ├── makefile │ │ │ ├── readandsynthesis.cpp │ │ │ └── spanalysis.cpp │ ├── makefile │ ├── src │ │ ├── cheaptrick.cpp │ │ ├── codec.cpp │ │ ├── common.cpp │ │ ├── d4c.cpp │ │ ├── dio.cpp │ │ ├── fft.cpp │ │ ├── harvest.cpp │ │ ├── matlabfunctions.cpp │ │ ├── stonemask.cpp │ │ ├── synthesis.cpp │ │ ├── synthesisrealtime.cpp │ │ └── world │ │ │ ├── cheaptrick.h │ │ │ ├── codec.h │ │ │ ├── common.h │ │ │ ├── constantnumbers.h │ │ │ ├── d4c.h │ │ │ ├── dio.h │ │ │ ├── fft.h │ │ │ ├── harvest.h │ │ │ ├── macrodefinitions.h │ │ │ ├── matlabfunctions.h │ │ │ ├── stonemask.h │ │ │ ├── synthesis.h │ │ │ └── synthesisrealtime.h │ ├── styleguide.txt │ ├── test │ │ ├── .bap │ │ ├── .f0a │ │ ├── .lf0 │ │ ├── .mgc │ │ ├── .resyn.ap │ │ ├── .resyn.f0 │ │ ├── .resyn.f0a │ │ ├── .resyn.sp │ │ ├── copy_synthesis.sh │ │ ├── ctest.c │ │ ├── test.cpp │ │ ├── vaiueo2d.ap │ │ ├── vaiueo2d.bap │ │ ├── vaiueo2d.f0 │ │ ├── vaiueo2d.f0a │ │ ├── vaiueo2d.lf0 │ │ ├── vaiueo2d.mgc │ │ ├── vaiueo2d.resyn.ap │ │ ├── vaiueo2d.resyn.f0 │ │ ├── vaiueo2d.resyn.f0a │ │ ├── vaiueo2d.resyn.sp │ │ └── vaiueo2d.sp │ ├── tools │ │ ├── README.md │ │ ├── audioio.cpp │ │ ├── audioio.h │ │ ├── parameterio.cpp │ │ └── parameterio.h │ └── visualstudio │ │ ├── README.md │ │ ├── win.sln │ │ ├── win.v11.suo │ │ └── win │ │ ├── win.vcxproj │ │ ├── win.vcxproj.filters │ │ └── win.vcxproj.user └── compile_tools.sh └── workspace ├── 1.extract_features ├── convert_reaper_f0.py └── extract_features.sh ├── 2.copy_synthesis └── copy_synthesis.sh ├── 3.make_cmp ├── 1.make_cmp.sh ├── 2.make_prepared_data.py └── utils │ ├── acoustic_base.py │ ├── acoustic_base.pyc │ ├── acoustic_composition.py │ ├── binary_io.py │ └── binary_io.pyc ├── README.md └── wav └── arctic_a0001.wav /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/README.md -------------------------------------------------------------------------------- /tools/REAPER/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/CMakeLists.txt -------------------------------------------------------------------------------- /tools/REAPER/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/CONTRIBUTING.md -------------------------------------------------------------------------------- /tools/REAPER/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/LICENSE -------------------------------------------------------------------------------- /tools/REAPER/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/README.md -------------------------------------------------------------------------------- /tools/REAPER/core/file_resource.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/core/file_resource.cc -------------------------------------------------------------------------------- /tools/REAPER/core/file_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/core/file_resource.h -------------------------------------------------------------------------------- /tools/REAPER/core/float_matrix-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/core/float_matrix-inl.h -------------------------------------------------------------------------------- /tools/REAPER/core/float_matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/core/float_matrix.cc -------------------------------------------------------------------------------- /tools/REAPER/core/float_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/core/float_matrix.h -------------------------------------------------------------------------------- /tools/REAPER/core/track.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/core/track.cc -------------------------------------------------------------------------------- /tools/REAPER/core/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/core/track.h -------------------------------------------------------------------------------- /tools/REAPER/epoch_tracker/epoch_tracker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/epoch_tracker/epoch_tracker.cc -------------------------------------------------------------------------------- /tools/REAPER/epoch_tracker/epoch_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/epoch_tracker/epoch_tracker.h -------------------------------------------------------------------------------- /tools/REAPER/epoch_tracker/fd_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/epoch_tracker/fd_filter.cc -------------------------------------------------------------------------------- /tools/REAPER/epoch_tracker/fd_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/epoch_tracker/fd_filter.h -------------------------------------------------------------------------------- /tools/REAPER/epoch_tracker/fft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/epoch_tracker/fft.cc -------------------------------------------------------------------------------- /tools/REAPER/epoch_tracker/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/epoch_tracker/fft.h -------------------------------------------------------------------------------- /tools/REAPER/epoch_tracker/lpc_analyzer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/epoch_tracker/lpc_analyzer.cc -------------------------------------------------------------------------------- /tools/REAPER/epoch_tracker/lpc_analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/epoch_tracker/lpc_analyzer.h -------------------------------------------------------------------------------- /tools/REAPER/epoch_tracker_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/epoch_tracker_main.cc -------------------------------------------------------------------------------- /tools/REAPER/wave/codec_api-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/wave/codec_api-inl.h -------------------------------------------------------------------------------- /tools/REAPER/wave/codec_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/wave/codec_api.h -------------------------------------------------------------------------------- /tools/REAPER/wave/codec_riff.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/wave/codec_riff.cc -------------------------------------------------------------------------------- /tools/REAPER/wave/codec_riff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/wave/codec_riff.h -------------------------------------------------------------------------------- /tools/REAPER/wave/wave.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/wave/wave.cc -------------------------------------------------------------------------------- /tools/REAPER/wave/wave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/wave/wave.h -------------------------------------------------------------------------------- /tools/REAPER/wave/wave_io-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/wave/wave_io-inl.h -------------------------------------------------------------------------------- /tools/REAPER/wave/wave_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/wave/wave_io.cc -------------------------------------------------------------------------------- /tools/REAPER/wave/wave_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/REAPER/wave/wave_io.h -------------------------------------------------------------------------------- /tools/SPTK-3.9/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/AUTHORS -------------------------------------------------------------------------------- /tools/SPTK-3.9/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/COPYING -------------------------------------------------------------------------------- /tools/SPTK-3.9/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/ChangeLog -------------------------------------------------------------------------------- /tools/SPTK-3.9/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/INSTALL -------------------------------------------------------------------------------- /tools/SPTK-3.9/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/Makefile.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/Makefile.mak -------------------------------------------------------------------------------- /tools/SPTK-3.9/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/NEWS -------------------------------------------------------------------------------- /tools/SPTK-3.9/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/README -------------------------------------------------------------------------------- /tools/SPTK-3.9/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/aclocal.m4 -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/Makefile.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/Makefile.mak -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/acep/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/acep/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/acep/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/acep/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/acep/_acep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/acep/_acep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/acep/acep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/acep/acep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/acorr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/acorr/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/acorr/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/acorr/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/acorr/_acorr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/acorr/_acorr.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/acorr/acorr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/acorr/acorr.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/agcep/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/agcep/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/agcep/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/agcep/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/agcep/_agcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/agcep/_agcep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/agcep/agcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/agcep/agcep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/amcep/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/amcep/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/amcep/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/amcep/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/amcep/_amcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/amcep/_amcep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/amcep/amcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/amcep/amcep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/average/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/average/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/average/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/average/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/average/_average.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/average/_average.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/average/average.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/average/average.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/b2mc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/b2mc/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/b2mc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/b2mc/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/b2mc/_b2mc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/b2mc/_b2mc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/b2mc/b2mc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/b2mc/b2mc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/bcp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/bcp/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/bcp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/bcp/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/bcp/bcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/bcp/bcp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/bcut/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/bcut/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/bcut/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/bcut/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/bcut/bcut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/bcut/bcut.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2acr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2acr/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2acr/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2acr/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2acr/_c2acr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2acr/_c2acr.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2acr/c2acr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2acr/c2acr.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2ir/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2ir/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2ir/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2ir/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2ir/_c2ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2ir/_c2ir.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2ir/c2ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2ir/c2ir.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2ndps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2ndps/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2ndps/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2ndps/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2ndps/_c2ndps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2ndps/_c2ndps.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2ndps/c2ndps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2ndps/c2ndps.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2sp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2sp/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2sp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2sp/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2sp/_c2sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2sp/_c2sp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/c2sp/c2sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/c2sp/c2sp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/cat2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/cat2/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/cat2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/cat2/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/cat2/cat2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/cat2/cat2.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/cdist/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/cdist/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/cdist/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/cdist/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/cdist/cdist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/cdist/cdist.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/clip/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/clip/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/clip/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/clip/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/clip/_clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/clip/_clip.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/clip/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/clip/clip.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/da/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/da/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/da/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/da/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/da/da.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/da/da.h -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/da/da.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/da/da.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/da/dawrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/da/dawrite.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/da/winplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/da/winplay.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/da/winplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/da/winplay.h -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/dct/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/dct/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/dct/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/dct/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/dct/_dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/dct/_dct.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/dct/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/dct/dct.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/decimate/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/decimate/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/decimate/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/decimate/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/decimate/decimate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/decimate/decimate.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/delay/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/delay/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/delay/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/delay/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/delay/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/delay/delay.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/delta/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/delta/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/delta/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/delta/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/delta/delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/delta/delta.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/df2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/df2/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/df2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/df2/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/df2/_df2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/df2/_df2.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/df2/df2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/df2/df2.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/dfs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/dfs/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/dfs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/dfs/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/dfs/_dfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/dfs/_dfs.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/dfs/dfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/dfs/dfs.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/dmp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/dmp/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/dmp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/dmp/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/dmp/dmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/dmp/dmp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ds/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ds/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ds/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ds/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ds/ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ds/ds.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ds/lpfcoef.2to1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ds/lpfcoef.2to1 -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ds/lpfcoef.3to2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ds/lpfcoef.3to2 -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ds/lpfcoef.4to3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ds/lpfcoef.4to3 -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ds/lpfcoef.5to2dn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ds/lpfcoef.5to2dn -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ds/lpfcoef.5to2up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ds/lpfcoef.5to2up -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ds/titech/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ds/titech/COPYING -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ds/titech/lpfcoef.7to4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ds/titech/lpfcoef.7to4 -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/dtw/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/dtw/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/dtw/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/dtw/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/dtw/dtw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/dtw/dtw.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/echo2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/echo2/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/echo2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/echo2/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/echo2/echo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/echo2/echo2.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/excite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/excite/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/excite/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/excite/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/excite/excite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/excite/excite.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/extract/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/extract/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/extract/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/extract/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/extract/extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/extract/extract.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fd/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fd/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fd/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fd/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fd/fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fd/fd.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fft/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fft/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fft/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fft/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fft/_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fft/_fft.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fft/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fft/fft.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fft2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fft2/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fft2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fft2/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fft2/_fft2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fft2/_fft2.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fft2/fft2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fft2/fft2.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fftcep/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fftcep/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fftcep/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fftcep/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fftcep/_fftcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fftcep/_fftcep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fftcep/fftcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fftcep/fftcep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fftr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fftr/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fftr/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fftr/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fftr/_fftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fftr/_fftr.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fftr/fftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fftr/fftr.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fftr2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fftr2/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fftr2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fftr2/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fftr2/_fftr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fftr2/_fftr2.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fftr2/fftr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fftr2/fftr2.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fig+fdrw/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fig+fdrw/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fig+fdrw/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fig+fdrw/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fig+fdrw/fdrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fig+fdrw/fdrw.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fig+fdrw/fig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fig+fdrw/fig.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fig+fdrw/fig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fig+fdrw/fig.h -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fig+fdrw/fig0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fig+fdrw/fig0.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fig+fdrw/fig1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fig+fdrw/fig1.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fig+fdrw/plot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fig+fdrw/plot.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fig+fdrw/plot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fig+fdrw/plot.h -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/fig+fdrw/plsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/fig+fdrw/plsub.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/frame/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/frame/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/frame/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/frame/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/frame/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/frame/frame.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/freqt/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/freqt/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/freqt/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/freqt/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/freqt/_freqt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/freqt/_freqt.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/freqt/freqt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/freqt/freqt.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gc2gc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gc2gc/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gc2gc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gc2gc/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gc2gc/_gc2gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gc2gc/_gc2gc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gc2gc/gc2gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gc2gc/gc2gc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gcep/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gcep/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gcep/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gcep/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gcep/_gcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gcep/_gcep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gcep/gcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gcep/gcep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/glsadf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/glsadf/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/glsadf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/glsadf/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/glsadf/_glsadf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/glsadf/_glsadf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/glsadf/glsadf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/glsadf/glsadf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gmm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gmm/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gmm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gmm/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gmm/_gmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gmm/_gmm.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gmm/gmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gmm/gmm.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gmm/gmmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gmm/gmmp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gnorm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gnorm/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gnorm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gnorm/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gnorm/_gnorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gnorm/_gnorm.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/gnorm/gnorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/gnorm/gnorm.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/grpdelay/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/grpdelay/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/grpdelay/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/grpdelay/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/grpdelay/_grpdelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/grpdelay/_grpdelay.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/grpdelay/grpdelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/grpdelay/grpdelay.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/histogram/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/histogram/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/histogram/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/histogram/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/histogram/_histogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/histogram/_histogram.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/histogram/histogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/histogram/histogram.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/idct/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/idct/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/idct/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/idct/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/idct/idct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/idct/idct.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ifft/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ifft/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ifft/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ifft/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ifft/_ifft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ifft/_ifft.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ifft/ifft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ifft/ifft.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ifft2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ifft2/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ifft2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ifft2/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ifft2/_ifft2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ifft2/_ifft2.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ifft2/ifft2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ifft2/ifft2.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ifftr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ifftr/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ifftr/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ifftr/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ifftr/_ifftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ifftr/_ifftr.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ifftr/ifftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ifftr/ifftr.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ignorm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ignorm/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ignorm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ignorm/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ignorm/_ignorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ignorm/_ignorm.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ignorm/ignorm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ignorm/ignorm.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/impulse/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/impulse/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/impulse/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/impulse/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/impulse/impulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/impulse/impulse.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/imsvq/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/imsvq/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/imsvq/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/imsvq/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/imsvq/_imsvq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/imsvq/_imsvq.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/imsvq/imsvq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/imsvq/imsvq.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/interpolate/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/interpolate/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/interpolate/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/interpolate/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/interpolate/interpolate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/interpolate/interpolate.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ivq/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ivq/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ivq/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ivq/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ivq/_ivq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ivq/_ivq.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ivq/ivq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ivq/ivq.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lbg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lbg/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lbg/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lbg/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lbg/_lbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lbg/_lbg.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lbg/lbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lbg/lbg.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/levdur/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/levdur/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/levdur/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/levdur/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/levdur/_levdur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/levdur/_levdur.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/levdur/levdur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/levdur/levdur.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/linear_intpl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/linear_intpl/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/linear_intpl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/linear_intpl/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/linear_intpl/linear_intpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/linear_intpl/linear_intpl.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lmadf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lmadf/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lmadf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lmadf/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lmadf/_lmadf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lmadf/_lmadf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lmadf/lmadf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lmadf/lmadf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc/_lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc/_lpc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc/lpc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc2c/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc2c/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc2c/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc2c/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc2c/_lpc2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc2c/_lpc2c.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc2c/lpc2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc2c/lpc2c.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc2lsp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc2lsp/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc2lsp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc2lsp/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc2lsp/_lpc2lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc2lsp/_lpc2lsp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc2lsp/lpc2lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc2lsp/lpc2lsp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc2par/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc2par/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc2par/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc2par/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc2par/_lpc2par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc2par/_lpc2par.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lpc2par/lpc2par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lpc2par/lpc2par.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lsp2lpc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lsp2lpc/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lsp2lpc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lsp2lpc/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lsp2lpc/_lsp2lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lsp2lpc/_lsp2lpc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lsp2lpc/lsp2lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lsp2lpc/lsp2lpc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lsp2sp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lsp2sp/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lsp2sp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lsp2sp/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lsp2sp/_lsp2sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lsp2sp/_lsp2sp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lsp2sp/lsp2sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lsp2sp/lsp2sp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lspcheck/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lspcheck/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lspcheck/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lspcheck/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lspcheck/_lspcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lspcheck/_lspcheck.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lspcheck/lspcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lspcheck/lspcheck.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lspdf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lspdf/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lspdf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lspdf/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lspdf/_lspdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lspdf/_lspdf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/lspdf/lspdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/lspdf/lspdf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ltcdf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ltcdf/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ltcdf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ltcdf/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ltcdf/_ltcdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ltcdf/_ltcdf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ltcdf/ltcdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ltcdf/ltcdf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mc2b/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mc2b/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mc2b/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mc2b/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mc2b/_mc2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mc2b/_mc2b.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mc2b/mc2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mc2b/mc2b.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mcep/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mcep/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mcep/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mcep/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mcep/_mcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mcep/_mcep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mcep/mcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mcep/mcep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/merge/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/merge/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/merge/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/merge/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/merge/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/merge/merge.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mfcc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mfcc/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mfcc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mfcc/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mfcc/_mfcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mfcc/_mfcc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mfcc/mfcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mfcc/mfcc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgc2mgc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgc2mgc/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgc2mgc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgc2mgc/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgc2mgc/_mgc2mgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgc2mgc/_mgc2mgc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgc2mgc/mgc2mgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgc2mgc/mgc2mgc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgc2sp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgc2sp/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgc2sp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgc2sp/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgc2sp/_mgc2sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgc2sp/_mgc2sp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgc2sp/mgc2sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgc2sp/mgc2sp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgcep/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgcep/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgcep/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgcep/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgcep/_mgcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgcep/_mgcep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgcep/mgcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgcep/mgcep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgclsp2sp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgclsp2sp/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgclsp2sp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgclsp2sp/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgclsp2sp/_mgclsp2sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgclsp2sp/_mgclsp2sp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mgclsp2sp/mgclsp2sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mgclsp2sp/mgclsp2sp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mglsadf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mglsadf/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mglsadf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mglsadf/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mglsadf/_mglsadf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mglsadf/_mglsadf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mglsadf/mglsadf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mglsadf/mglsadf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/minmax/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/minmax/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/minmax/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/minmax/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/minmax/minmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/minmax/minmax.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mlpg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mlpg/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mlpg/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mlpg/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mlpg/_mlpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mlpg/_mlpg.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mlpg/mlpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mlpg/mlpg.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mlsacheck/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mlsacheck/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mlsacheck/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mlsacheck/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mlsacheck/mlsacheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mlsacheck/mlsacheck.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mlsadf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mlsadf/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mlsadf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mlsadf/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mlsadf/_mlsadf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mlsadf/_mlsadf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/mlsadf/mlsadf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/mlsadf/mlsadf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/msvq/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/msvq/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/msvq/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/msvq/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/msvq/_msvq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/msvq/_msvq.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/msvq/msvq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/msvq/msvq.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/nan/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/nan/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/nan/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/nan/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/nan/nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/nan/nan.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ndps2c/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ndps2c/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ndps2c/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ndps2c/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ndps2c/_ndps2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ndps2c/_ndps2c.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ndps2c/ndps2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ndps2c/ndps2c.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/norm0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/norm0/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/norm0/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/norm0/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/norm0/_norm0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/norm0/_norm0.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/norm0/norm0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/norm0/norm0.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/nrand/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/nrand/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/nrand/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/nrand/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/nrand/_nrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/nrand/_nrand.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/nrand/nrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/nrand/nrand.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/par2lpc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/par2lpc/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/par2lpc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/par2lpc/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/par2lpc/_par2lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/par2lpc/_par2lpc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/par2lpc/par2lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/par2lpc/par2lpc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pca/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pca/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pca/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pca/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pca/pca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pca/pca.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pca/pcas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pca/pcas.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/phase/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/phase/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/phase/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/phase/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/phase/_phase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/phase/_phase.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/phase/phase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/phase/phase.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pitch/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pitch/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pitch/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pitch/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pitch/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pitch/pitch.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pitch/snack/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pitch/snack/COPYING -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pitch/snack/jkGetF0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pitch/snack/jkGetF0.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pitch/snack/jkGetF0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pitch/snack/jkGetF0.h -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pitch/snack/sigproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pitch/snack/sigproc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pitch/swipe/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pitch/swipe/COPYING -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pitch/swipe/swipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pitch/swipe/swipe.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pitch/swipe/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pitch/swipe/vector.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/pitch/swipe/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/pitch/swipe/vector.h -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/poledf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/poledf/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/poledf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/poledf/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/poledf/_poledf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/poledf/_poledf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/poledf/poledf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/poledf/poledf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/psgr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/psgr/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/psgr/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/psgr/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/psgr/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/psgr/dict.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/psgr/eps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/psgr/eps.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/psgr/plot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/psgr/plot.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/psgr/psgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/psgr/psgr.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/psgr/psgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/psgr/psgr.h -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ramp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ramp/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ramp/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ramp/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ramp/ramp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ramp/ramp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/rawtowav/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/rawtowav/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/rawtowav/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/rawtowav/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/rawtowav/rawtowav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/rawtowav/rawtowav.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/reverse/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/reverse/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/reverse/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/reverse/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/reverse/_reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/reverse/_reverse.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/reverse/reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/reverse/reverse.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/rmse/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/rmse/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/rmse/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/rmse/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/rmse/_rmse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/rmse/_rmse.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/rmse/rmse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/rmse/rmse.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/root_pol/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/root_pol/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/root_pol/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/root_pol/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/root_pol/_root_pol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/root_pol/_root_pol.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/root_pol/root_pol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/root_pol/root_pol.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/sin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/sin/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/sin/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/sin/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/sin/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/sin/sin.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/smcep/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/smcep/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/smcep/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/smcep/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/smcep/_smcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/smcep/_smcep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/smcep/smcep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/smcep/smcep.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/snr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/snr/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/snr/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/snr/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/snr/snr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/snr/snr.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/sopr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/sopr/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/sopr/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/sopr/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/sopr/sopr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/sopr/sopr.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/spec/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/spec/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/spec/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/spec/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/spec/spec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/spec/spec.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/step/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/step/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/step/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/step/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/step/step.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/step/step.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/swab/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/swab/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/swab/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/swab/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/swab/swab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/swab/swab.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/symmetrize/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/symmetrize/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/symmetrize/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/symmetrize/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/symmetrize/symmetrize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/symmetrize/symmetrize.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/train/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/train/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/train/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/train/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/train/train.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/train/train.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/transpose/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/transpose/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/transpose/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/transpose/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/transpose/_transpose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/transpose/_transpose.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/transpose/transpose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/transpose/transpose.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/uels/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/uels/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/uels/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/uels/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/uels/_uels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/uels/_uels.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/uels/uels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/uels/uels.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ulaw/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ulaw/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ulaw/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ulaw/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ulaw/_ulaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ulaw/_ulaw.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/ulaw/ulaw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/ulaw/ulaw.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/us/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/us/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/us/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/us/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/us/lpfcoef.2to3f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/us/lpfcoef.2to3f -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/us/lpfcoef.2to3s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/us/lpfcoef.2to3s -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/us/lpfcoef.3to4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/us/lpfcoef.3to4 -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/us/lpfcoef.4to5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/us/lpfcoef.4to5 -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/us/lpfcoef.5to7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/us/lpfcoef.5to7 -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/us/lpfcoef.5to8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/us/lpfcoef.5to8 -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/us/titech/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/us/titech/COPYING -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/us/titech/lpfcoef.3to5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/us/titech/lpfcoef.3to5 -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/us/titech/lpfcoef.7to8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/us/titech/lpfcoef.7to8 -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/us/us.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/us/us.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/us/us16.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/us/us16.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/us/uscd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/us/uscd.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vc/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vc/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vc/_vc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vc/_vc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vc/hts_engine_API/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vc/hts_engine_API/COPYING -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vc/hts_engine_API/HTS_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vc/hts_engine_API/HTS_engine.h -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vc/hts_engine_API/HTS_hidden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vc/hts_engine_API/HTS_hidden.h -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vc/hts_engine_API/HTS_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vc/hts_engine_API/HTS_misc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vc/hts_engine_API/HTS_pstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vc/hts_engine_API/HTS_pstream.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vc/hts_engine_API/HTS_sstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vc/hts_engine_API/HTS_sstream.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vc/vc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vc/vc.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vopr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vopr/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vopr/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vopr/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vopr/vopr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vopr/vopr.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vq/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vq/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vq/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vq/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vq/_vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vq/_vq.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vq/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vq/vq.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vstat/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vstat/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vstat/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vstat/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vstat/vstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vstat/vstat.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vsum/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vsum/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vsum/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vsum/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/vsum/vsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/vsum/vsum.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/wavjoin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/wavjoin/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/wavjoin/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/wavjoin/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/wavjoin/_wavjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/wavjoin/_wavjoin.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/wavjoin/wavjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/wavjoin/wavjoin.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/wavsplit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/wavsplit/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/wavsplit/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/wavsplit/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/wavsplit/_wavsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/wavsplit/_wavsplit.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/wavsplit/wavsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/wavsplit/wavsplit.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/window/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/window/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/window/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/window/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/window/_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/window/_window.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/window/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/window/window.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/x2x/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/x2x/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/x2x/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/x2x/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/x2x/x2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/x2x/x2x.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/config.h -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/gcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/gcdata.h -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark0.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark1.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark10.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark11.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark12.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark13.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark14.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark15.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark2.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark3.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark4.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark5.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark6.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark7.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark8.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/marks/mark9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/marks/mark9.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/plot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/plot.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till0.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till1.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till10.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till11.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till11.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till12.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till13.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till14.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till15.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till15.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till16.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till2.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till3.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till4.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till5.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till6.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till7.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till8.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/tills/till9.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/tills/till9.dat -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/window.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/xgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/xgr.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/xgr/xgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/xgr/xgr.h -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/zcross/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/zcross/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/zcross/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/zcross/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/zcross/_zcross.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/zcross/_zcross.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/zcross/zcross.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/zcross/zcross.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/zerodf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/zerodf/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/zerodf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/zerodf/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/zerodf/_zerodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/zerodf/_zerodf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/bin/zerodf/zerodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/bin/zerodf/zerodf.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/config/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/config/compile -------------------------------------------------------------------------------- /tools/SPTK-3.9/config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/config/config.guess -------------------------------------------------------------------------------- /tools/SPTK-3.9/config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/config/config.sub -------------------------------------------------------------------------------- /tools/SPTK-3.9/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/config/depcomp -------------------------------------------------------------------------------- /tools/SPTK-3.9/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/config/install-sh -------------------------------------------------------------------------------- /tools/SPTK-3.9/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/config/missing -------------------------------------------------------------------------------- /tools/SPTK-3.9/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/configure -------------------------------------------------------------------------------- /tools/SPTK-3.9/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/configure.ac -------------------------------------------------------------------------------- /tools/SPTK-3.9/include/Makefile.am: -------------------------------------------------------------------------------- 1 | include_HEADERS = SPTK.h 2 | -------------------------------------------------------------------------------- /tools/SPTK-3.9/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/include/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/include/Makefile.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/include/Makefile.mak -------------------------------------------------------------------------------- /tools/SPTK-3.9/include/SPTK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/include/SPTK.h -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/Makefile.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/Makefile.mak -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/agexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/agexp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/cholesky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/cholesky.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/fileio.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/fillz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/fillz.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/getfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/getfp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/getmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/getmem.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/gexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/gexp.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/glog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/glog.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/invert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/invert.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/matrix.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/movem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/movem.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/mseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/mseq.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/theq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/theq.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/lib/toeplitz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/lib/toeplitz.c -------------------------------------------------------------------------------- /tools/SPTK-3.9/script/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/script/Makefile.am -------------------------------------------------------------------------------- /tools/SPTK-3.9/script/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/script/Makefile.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/script/bell.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/script/bell.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/script/glogsp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/script/glogsp.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/script/grlogsp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/script/grlogsp.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/script/gseries.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/script/gseries.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/script/gwave.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/script/gwave.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/script/mgc2mgclsp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/script/mgc2mgclsp.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/script/mgclsp2mgc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/script/mgclsp2mgc.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/script/raw2wav.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/script/raw2wav.in -------------------------------------------------------------------------------- /tools/SPTK-3.9/script/wav2raw.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/SPTK-3.9/script/wav2raw.in -------------------------------------------------------------------------------- /tools/World/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/.gitignore -------------------------------------------------------------------------------- /tools/World/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/LICENSE.txt -------------------------------------------------------------------------------- /tools/World/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/README.md -------------------------------------------------------------------------------- /tools/World/doc/dev_env.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/doc/dev_env.txt -------------------------------------------------------------------------------- /tools/World/doc/readme_ENG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/doc/readme_ENG.txt -------------------------------------------------------------------------------- /tools/World/doc/readme_JP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/doc/readme_JP.txt -------------------------------------------------------------------------------- /tools/World/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/README.md -------------------------------------------------------------------------------- /tools/World/examples/analysis_synthesis/analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/analysis_synthesis/analysis.cpp -------------------------------------------------------------------------------- /tools/World/examples/analysis_synthesis/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/analysis_synthesis/makefile -------------------------------------------------------------------------------- /tools/World/examples/analysis_synthesis/synthesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/analysis_synthesis/synthesis.cpp -------------------------------------------------------------------------------- /tools/World/examples/codec_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/codec_test/README.md -------------------------------------------------------------------------------- /tools/World/examples/codec_test/apanalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/codec_test/apanalysis.cpp -------------------------------------------------------------------------------- /tools/World/examples/codec_test/f0analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/codec_test/f0analysis.cpp -------------------------------------------------------------------------------- /tools/World/examples/codec_test/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/codec_test/makefile -------------------------------------------------------------------------------- /tools/World/examples/codec_test/readandsynthesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/codec_test/readandsynthesis.cpp -------------------------------------------------------------------------------- /tools/World/examples/codec_test/spanalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/codec_test/spanalysis.cpp -------------------------------------------------------------------------------- /tools/World/examples/parameter_io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/parameter_io/README.md -------------------------------------------------------------------------------- /tools/World/examples/parameter_io/apanalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/parameter_io/apanalysis.cpp -------------------------------------------------------------------------------- /tools/World/examples/parameter_io/f0analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/parameter_io/f0analysis.cpp -------------------------------------------------------------------------------- /tools/World/examples/parameter_io/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/parameter_io/makefile -------------------------------------------------------------------------------- /tools/World/examples/parameter_io/readandsynthesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/parameter_io/readandsynthesis.cpp -------------------------------------------------------------------------------- /tools/World/examples/parameter_io/spanalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/examples/parameter_io/spanalysis.cpp -------------------------------------------------------------------------------- /tools/World/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/makefile -------------------------------------------------------------------------------- /tools/World/src/cheaptrick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/cheaptrick.cpp -------------------------------------------------------------------------------- /tools/World/src/codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/codec.cpp -------------------------------------------------------------------------------- /tools/World/src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/common.cpp -------------------------------------------------------------------------------- /tools/World/src/d4c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/d4c.cpp -------------------------------------------------------------------------------- /tools/World/src/dio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/dio.cpp -------------------------------------------------------------------------------- /tools/World/src/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/fft.cpp -------------------------------------------------------------------------------- /tools/World/src/harvest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/harvest.cpp -------------------------------------------------------------------------------- /tools/World/src/matlabfunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/matlabfunctions.cpp -------------------------------------------------------------------------------- /tools/World/src/stonemask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/stonemask.cpp -------------------------------------------------------------------------------- /tools/World/src/synthesis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/synthesis.cpp -------------------------------------------------------------------------------- /tools/World/src/synthesisrealtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/synthesisrealtime.cpp -------------------------------------------------------------------------------- /tools/World/src/world/cheaptrick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/world/cheaptrick.h -------------------------------------------------------------------------------- /tools/World/src/world/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/world/codec.h -------------------------------------------------------------------------------- /tools/World/src/world/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/world/common.h -------------------------------------------------------------------------------- /tools/World/src/world/constantnumbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/world/constantnumbers.h -------------------------------------------------------------------------------- /tools/World/src/world/d4c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/world/d4c.h -------------------------------------------------------------------------------- /tools/World/src/world/dio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/world/dio.h -------------------------------------------------------------------------------- /tools/World/src/world/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/world/fft.h -------------------------------------------------------------------------------- /tools/World/src/world/harvest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/world/harvest.h -------------------------------------------------------------------------------- /tools/World/src/world/macrodefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/world/macrodefinitions.h -------------------------------------------------------------------------------- /tools/World/src/world/matlabfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/world/matlabfunctions.h -------------------------------------------------------------------------------- /tools/World/src/world/stonemask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/world/stonemask.h -------------------------------------------------------------------------------- /tools/World/src/world/synthesis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/world/synthesis.h -------------------------------------------------------------------------------- /tools/World/src/world/synthesisrealtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/src/world/synthesisrealtime.h -------------------------------------------------------------------------------- /tools/World/styleguide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/styleguide.txt -------------------------------------------------------------------------------- /tools/World/test/.bap: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/World/test/.f0a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/World/test/.lf0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/World/test/.mgc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/World/test/.resyn.ap: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/World/test/.resyn.f0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/World/test/.resyn.f0a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/World/test/.resyn.sp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/World/test/copy_synthesis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/test/copy_synthesis.sh -------------------------------------------------------------------------------- /tools/World/test/ctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/test/ctest.c -------------------------------------------------------------------------------- /tools/World/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/test/test.cpp -------------------------------------------------------------------------------- /tools/World/test/vaiueo2d.ap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/test/vaiueo2d.ap -------------------------------------------------------------------------------- /tools/World/test/vaiueo2d.bap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/test/vaiueo2d.bap -------------------------------------------------------------------------------- /tools/World/test/vaiueo2d.f0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/test/vaiueo2d.f0 -------------------------------------------------------------------------------- /tools/World/test/vaiueo2d.f0a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/test/vaiueo2d.f0a -------------------------------------------------------------------------------- /tools/World/test/vaiueo2d.lf0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/test/vaiueo2d.lf0 -------------------------------------------------------------------------------- /tools/World/test/vaiueo2d.mgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/test/vaiueo2d.mgc -------------------------------------------------------------------------------- /tools/World/test/vaiueo2d.resyn.ap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/test/vaiueo2d.resyn.ap -------------------------------------------------------------------------------- /tools/World/test/vaiueo2d.resyn.f0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/test/vaiueo2d.resyn.f0 -------------------------------------------------------------------------------- /tools/World/test/vaiueo2d.resyn.f0a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/test/vaiueo2d.resyn.f0a -------------------------------------------------------------------------------- /tools/World/test/vaiueo2d.resyn.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/test/vaiueo2d.resyn.sp -------------------------------------------------------------------------------- /tools/World/test/vaiueo2d.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/test/vaiueo2d.sp -------------------------------------------------------------------------------- /tools/World/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/tools/README.md -------------------------------------------------------------------------------- /tools/World/tools/audioio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/tools/audioio.cpp -------------------------------------------------------------------------------- /tools/World/tools/audioio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/tools/audioio.h -------------------------------------------------------------------------------- /tools/World/tools/parameterio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/tools/parameterio.cpp -------------------------------------------------------------------------------- /tools/World/tools/parameterio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/tools/parameterio.h -------------------------------------------------------------------------------- /tools/World/visualstudio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/visualstudio/README.md -------------------------------------------------------------------------------- /tools/World/visualstudio/win.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/visualstudio/win.sln -------------------------------------------------------------------------------- /tools/World/visualstudio/win.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/visualstudio/win.v11.suo -------------------------------------------------------------------------------- /tools/World/visualstudio/win/win.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/visualstudio/win/win.vcxproj -------------------------------------------------------------------------------- /tools/World/visualstudio/win/win.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/visualstudio/win/win.vcxproj.filters -------------------------------------------------------------------------------- /tools/World/visualstudio/win/win.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/World/visualstudio/win/win.vcxproj.user -------------------------------------------------------------------------------- /tools/compile_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/tools/compile_tools.sh -------------------------------------------------------------------------------- /workspace/1.extract_features/convert_reaper_f0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/workspace/1.extract_features/convert_reaper_f0.py -------------------------------------------------------------------------------- /workspace/1.extract_features/extract_features.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/workspace/1.extract_features/extract_features.sh -------------------------------------------------------------------------------- /workspace/2.copy_synthesis/copy_synthesis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/workspace/2.copy_synthesis/copy_synthesis.sh -------------------------------------------------------------------------------- /workspace/3.make_cmp/1.make_cmp.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python ./utils/acoustic_composition.py 3 | -------------------------------------------------------------------------------- /workspace/3.make_cmp/2.make_prepared_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/workspace/3.make_cmp/2.make_prepared_data.py -------------------------------------------------------------------------------- /workspace/3.make_cmp/utils/acoustic_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/workspace/3.make_cmp/utils/acoustic_base.py -------------------------------------------------------------------------------- /workspace/3.make_cmp/utils/acoustic_base.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/workspace/3.make_cmp/utils/acoustic_base.pyc -------------------------------------------------------------------------------- /workspace/3.make_cmp/utils/acoustic_composition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/workspace/3.make_cmp/utils/acoustic_composition.py -------------------------------------------------------------------------------- /workspace/3.make_cmp/utils/binary_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/workspace/3.make_cmp/utils/binary_io.py -------------------------------------------------------------------------------- /workspace/3.make_cmp/utils/binary_io.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/workspace/3.make_cmp/utils/binary_io.pyc -------------------------------------------------------------------------------- /workspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/workspace/README.md -------------------------------------------------------------------------------- /workspace/wav/arctic_a0001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npuichigo/extract_features_using_world/HEAD/workspace/wav/arctic_a0001.wav --------------------------------------------------------------------------------