├── .gitmodules ├── CMakeLists.txt ├── args.hpp ├── buffer_operations.hpp ├── headers.hpp ├── interpolate.hpp ├── io.hpp ├── lib └── cxxopts.hpp ├── main.cpp ├── multi.hpp ├── readme.md ├── test-convert-sc.scd ├── test-input └── AKWF_eguitar_0001.wav ├── test.scd └── test ├── CMakeLists.txt └── test_fftr_main.cpp /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/args.hpp -------------------------------------------------------------------------------- /buffer_operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/buffer_operations.hpp -------------------------------------------------------------------------------- /headers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/headers.hpp -------------------------------------------------------------------------------- /interpolate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/interpolate.hpp -------------------------------------------------------------------------------- /io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/io.hpp -------------------------------------------------------------------------------- /lib/cxxopts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/lib/cxxopts.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/main.cpp -------------------------------------------------------------------------------- /multi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/multi.hpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/readme.md -------------------------------------------------------------------------------- /test-convert-sc.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/test-convert-sc.scd -------------------------------------------------------------------------------- /test-input/AKWF_eguitar_0001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/test-input/AKWF_eguitar_0001.wav -------------------------------------------------------------------------------- /test.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/test.scd -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/test_fftr_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catfact/wttool/HEAD/test/test_fftr_main.cpp --------------------------------------------------------------------------------