%% date:: [[2023-05-11]] parent:: %% # [[Whisper]] [site](https://openai.com/research/whisper) | [repo](https://github.com/openai/whisper) Whisper is a speech recognition tool based on [[Artificial Intelligence|AI]] and created by [[OpenAI]]. ## Prerequisites - [[Python]]. - [[ffmpeg]] (`brew install ffmpeg`) ## Installation To install Whisper, execute the following: ``` pip install whisper ``` ## Usage ### Transcribe file ``` whisper twc-088.mp3 --model medium --language English > twc-088.srt ```