🔧
概念 #Claude Code #動画編集 #ffmpeg #whisper #auto-editor #セットアップ 📚 videoedit-cc

動画編集 × Claude Code — ツールセットアップ

ffmpeg・Whisper・auto-editor のインストール方法と動作確認。よくあるエラーと対処法

必要なツール

ツール役割
ffmpeg動画・音声の変換・処理全般
whisper音声→テキスト変換・SRT生成
auto-editor無音部分の自動カット(ジェットカット)

インストール

ffmpeg

brew install ffmpeg

Whisper

pip3 install openai-whisper --break-system-packages

auto-editor

pip3 install auto-editor --break-system-packages

動作確認

ffmpeg -version
whisper --help
auto-editor --help

3つともバージョンまたはヘルプが表示されればOK。

よくあるエラーと対処法

command not found: whisper

pip3 install openai-whisper --break-system-packages

それでも出る場合:

python3 -m whisper --help

command not found: auto-editor

pip3 install auto-editor --break-system-packages

command not found: ffmpeg

brew install ffmpeg

Homebrew未インストールの場合:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Whisperの初回実行が遅い

初回はモデルファイルをダウンロードするため数分かかる。2回目以降はキャッシュされるので速い。

Claude Codeに確認させる方法

Claude Codeを起動して以下を打つだけで環境チェックしてくれる:

ffmpeg、whisper、auto-editorが使える状態か確認して、
エラーがあれば修正してください