Whisper を用いた音声認識を実行するためには,whisper に加えて ffmpeg のインストールが必要になります.また,whisper をインストールするには,あらかじめ git をインストールしておく必要もあります.もしも git のインストールがまだであれば,ここを参考に git をインストールと環境設定を行ってください.
Gitのインストールが確認できたら,pip を使って whisper をインストールします.
(base) C:\Users\Student\Documents\python>pip install git+https://github.com/openai/whisper.git ⏎
次に,ffmpeg をインストールします.このとき,途中で y を入力しなければならないことに注意してください.
(base) C:\Users\Student\Documents\python>conda install ffmpeg -c conda-forge ⏎ ...(中略)... Proceed ([y]/n)? y ⏎ ...(中略)... Preparing transaction: done Verifying transaction: done Executing transaction: done Retrieving notices: ...working... done (base) C:\Users\Student>