├── .gitignore ├── LICENSE ├── Pipfile ├── README.md ├── aiolib ├── chunk.py └── wave.py ├── app.py ├── config.yaml └── examples ├── client.py └── mic /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JPEWdev/deep-dregs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JPEWdev/deep-dregs/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JPEWdev/deep-dregs/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JPEWdev/deep-dregs/HEAD/README.md -------------------------------------------------------------------------------- /aiolib/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JPEWdev/deep-dregs/HEAD/aiolib/chunk.py -------------------------------------------------------------------------------- /aiolib/wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JPEWdev/deep-dregs/HEAD/aiolib/wave.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JPEWdev/deep-dregs/HEAD/app.py -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JPEWdev/deep-dregs/HEAD/config.yaml -------------------------------------------------------------------------------- /examples/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JPEWdev/deep-dregs/HEAD/examples/client.py -------------------------------------------------------------------------------- /examples/mic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JPEWdev/deep-dregs/HEAD/examples/mic --------------------------------------------------------------------------------