I got this from a Kevin Stratvert video showing how to use Whisper for audio to text in Google Colab. How would I modify it to use Distil-whisper? I went to Hugging Face and tried to follow that code but I keep running into errors.
!pip install git+https://github.com/openai/whisper.git
!sudo apt update && sudo apt install ffmpeg
!whisper "Adjusting the Spray Guard.mp3" --model medium
The example on Hugging Face used far more code than just these three lines.