├── .gitignore ├── README.md ├── broker.py ├── recorder.py ├── recordings └── recordings.txt ├── requirements.txt ├── sample_config.py ├── transcriber.py └── transcriptions └── transcript.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/openai-whisper-voice-commands/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Video Demo: 2 | 3 | https://youtu.be/hqJ2K3C8unA 4 | -------------------------------------------------------------------------------- /broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/openai-whisper-voice-commands/HEAD/broker.py -------------------------------------------------------------------------------- /recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/openai-whisper-voice-commands/HEAD/recorder.py -------------------------------------------------------------------------------- /recordings/recordings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/openai-whisper-voice-commands/HEAD/recordings/recordings.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/openai-whisper-voice-commands/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/openai-whisper-voice-commands/HEAD/sample_config.py -------------------------------------------------------------------------------- /transcriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/openai-whisper-voice-commands/HEAD/transcriber.py -------------------------------------------------------------------------------- /transcriptions/transcript.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------