一键导入
ffmpeg
Extract audio and transcode MP4 to WebM using ffmpeg.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Extract audio and transcode MP4 to WebM using ffmpeg.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Boss agent skill: plan a task DAG on the mission task board and judge worker results. The server-side scheduler owns spawning, retries, and notifications.
Worker agent skill for missions spawned by an orchestrator boss. Focuses on completing the assigned task and reporting status clearly.
Retrieve and manage secrets using Bitwarden Secrets Manager CLI (bws). Trigger terms: bitwarden, secrets, bws, secret, api key, credentials, password.
Resolves review threads on open PRs (Bugbot or human), fixing valid issues and replying when not applicable. Triggers: bugbot, review issues, bot review, github action review, unresolved review threads, review conversations.
Interact with GitHub using the gh CLI - PRs, issues, repos, releases, and actions. Trigger terms: github, gh, pull request, PR, issue, release, actions, workflow, repo.
Manage the Open Agent library (skills, agents, commands, tools, rules, MCPs, workspace templates, config profiles) via Library API tools. Trigger terms: library, skill, agent, command, tool, rule, MCP, template, save skill, create skill, config profile, configs.
| name | ffmpeg |
| description | Extract audio and transcode MP4 to WebM using ffmpeg. |
artifacts/ when possible (e.g., artifacts/output.webm).ffmpeg -y -i input.mp4 -vn -c:a libmp3lame -q:a 2 output.mp3
ffmpeg -y -i input.mp4 -vn -c:a pcm_s16le -ar 44100 -ac 2 output.wav
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
ffmpeg -y -i input.mp4 -c:v libvpx -crf 10 -b:v 1M -c:a libvorbis -b:a 128k output.webm
-y overwrites output files. Remove if you want interactive prompts.-crf means higher quality (and larger files).-vn to drop video.