← スキル一覧に戻る

ffmpeg
by Th0rgal
⭐ 5🍴 4📅 2026年1月23日
SKILL.md
name: ffmpeg description: Extract audio and transcode MP4 to WebM using ffmpeg.
ffmpeg
Scope
Use this skill to:
- Extract audio from a video file.
- Transcode an MP4 video to WebM.
Requirements
- Prefer safe defaults and explicit codecs.
- Keep commands minimal and reproducible.
- Use ASCII-only output unless file already uses Unicode.
Commands
Extract audio (MP4 → MP3)
ffmpeg -y -i input.mp4 -vn -c:a libmp3lame -q:a 2 output.mp3
Extract audio (MP4 → WAV, lossless)
ffmpeg -y -i input.mp4 -vn -c:a pcm_s16le -ar 44100 -ac 2 output.wav
Transcode MP4 → WebM (VP9 + Opus)
ffmpeg -y -i input.mp4 -c:v libvpx-vp9 -crf 32 -b:v 0 -row-mt 1 -c:a libopus -b:a 128k output.webm
Transcode MP4 → WebM (VP8 + Vorbis)
ffmpeg -y -i input.mp4 -c:v libvpx -crf 10 -b:v 1M -c:a libvorbis -b:a 128k output.webm
Notes
-yoverwrites output files. Remove if you want interactive prompts.- Lower
-crfmeans higher quality (and larger files). - If audio-only extraction is desired, use
-vnto drop video.
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です