├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── README.md ├── main.ipynb └── script └── custom_whisper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/openai-whisper-cpu/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/openai-whisper-cpu/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/openai-whisper-cpu/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/openai-whisper-cpu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/openai-whisper-cpu/HEAD/README.md -------------------------------------------------------------------------------- /main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/openai-whisper-cpu/HEAD/main.ipynb -------------------------------------------------------------------------------- /script/custom_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MiscellaneousStuff/openai-whisper-cpu/HEAD/script/custom_whisper.py --------------------------------------------------------------------------------