Skip to content

Instantly share code, notes, and snippets.

@T1T4N
Created October 10, 2022 14:47
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save T1T4N/a89a11e59bd0f90bb23fbe87a34dad5a to your computer and use it in GitHub Desktop.
Save T1T4N/a89a11e59bd0f90bb23fbe87a34dad5a to your computer and use it in GitHub Desktop.
Run OpenAI Whisper on M1 MacBook Pro
# Original author: https://twitter.com/esizkur/status/1579207536812904448
git clone https://github.com/ggerganov/whisper.cpp
cd whisper.cpp
make
./download-ggml-model.sh large
ffmpeg -i recording.m4a -acodec pcm_s16le -ar 16000 recording.wav
./main -m models/ggml-large.bin -l de -f recording.wav | tee transcript.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment