Python入門トップページ


目次

  1. Windowsでの準備
  2. Mac での準備
  3. Whisper による音声認識

Whisper で音声認識をしてみよう

Windows での準備

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>

目次に戻る