├── LICENSE ├── README.md ├── assets ├── STAM.png ├── STE.png └── WAV.png ├── examples ├── mfcc.nim ├── test.wav ├── train.nim └── utils.nim ├── scim.nimble ├── src ├── scim.nim └── scim │ ├── constants.nim │ ├── fft.nim │ ├── main.nim │ ├── record.md │ ├── scimio.nim │ ├── special.nim │ └── utils.nim └── tests ├── config.nims └── test1.nim /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/README.md -------------------------------------------------------------------------------- /assets/STAM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/assets/STAM.png -------------------------------------------------------------------------------- /assets/STE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/assets/STE.png -------------------------------------------------------------------------------- /assets/WAV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/assets/WAV.png -------------------------------------------------------------------------------- /examples/mfcc.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/examples/mfcc.nim -------------------------------------------------------------------------------- /examples/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/examples/test.wav -------------------------------------------------------------------------------- /examples/train.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/examples/train.nim -------------------------------------------------------------------------------- /examples/utils.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/examples/utils.nim -------------------------------------------------------------------------------- /scim.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/scim.nimble -------------------------------------------------------------------------------- /src/scim.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/src/scim.nim -------------------------------------------------------------------------------- /src/scim/constants.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/src/scim/constants.nim -------------------------------------------------------------------------------- /src/scim/fft.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/src/scim/fft.nim -------------------------------------------------------------------------------- /src/scim/main.nim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scim/record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/src/scim/record.md -------------------------------------------------------------------------------- /src/scim/scimio.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/src/scim/scimio.nim -------------------------------------------------------------------------------- /src/scim/special.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/src/scim/special.nim -------------------------------------------------------------------------------- /src/scim/utils.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/src/scim/utils.nim -------------------------------------------------------------------------------- /tests/config.nims: -------------------------------------------------------------------------------- 1 | switch("path", "$projectDir/../src") -------------------------------------------------------------------------------- /tests/test1.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ringabout/scim/HEAD/tests/test1.nim --------------------------------------------------------------------------------