├── LICENSE ├── README.md ├── camera-shutter.oga ├── img └── ss.png ├── mimic3_client.py ├── on_screen.py ├── record.py ├── requirements.txt ├── sdapi.py ├── tests ├── chopt.py ├── dummy_server.py ├── test.py └── test_cuda.py ├── tracer.py └── whisper_cpp_client.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/README.md -------------------------------------------------------------------------------- /camera-shutter.oga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/camera-shutter.oga -------------------------------------------------------------------------------- /img/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/img/ss.png -------------------------------------------------------------------------------- /mimic3_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/mimic3_client.py -------------------------------------------------------------------------------- /on_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/on_screen.py -------------------------------------------------------------------------------- /record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/record.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/requirements.txt -------------------------------------------------------------------------------- /sdapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/sdapi.py -------------------------------------------------------------------------------- /tests/chopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/tests/chopt.py -------------------------------------------------------------------------------- /tests/dummy_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/tests/dummy_server.py -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/tests/test.py -------------------------------------------------------------------------------- /tests/test_cuda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/tests/test_cuda.py -------------------------------------------------------------------------------- /tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/tracer.py -------------------------------------------------------------------------------- /whisper_cpp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themanyone/whisper_dictation/HEAD/whisper_cpp_client.py --------------------------------------------------------------------------------