在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用ffmpeg
星标3
分支0
更新时间2026年2月17日 15:36
Video and audio processing with ffmpeg
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Video and audio processing with ffmpeg
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Google Calendar — list, create, and manage events via gcal CLI
Manage HubSpot CRM — contacts, companies, deals, tickets
Manage Shopify store — products, orders, customers, inventory
Configure audio transcription and image/video understanding for channels
AWS CLI for S3, EC2, Lambda, CloudWatch, RDS, and ECS
Google Calendar — list, create, and manage events via gcal CLI
基于 SOC 职业分类
| name | ffmpeg |
| description | Video and audio processing with ffmpeg |
Use the bash tool with ffmpeg for media processing.
# Check if installed
command -v ffmpeg && command -v ffprobe
# Install — macOS
brew install ffmpeg
# Install — Ubuntu/Debian
sudo apt install ffmpeg
ffprobe -v quiet -print_format json -show_format -show_streams <input>
ffmpeg -i input.mp4 -c:v libx264 -crf 23 -preset medium output.mp4
ffmpeg -i input.mp4 -vn -acodec libmp3lame -q:a 2 output.mp3
ffmpeg -i input.webm -c:v libx264 output.mp4
ffmpeg -i input.mp4 -ss 00:01:00 -t 00:00:30 -c copy output.mp4
ffmpeg -i input.mp4 -vf "scale=1280:720" output.mp4
ffmpeg -i input.mp4 -vf "scale=-1:720" output.mp4 # maintain aspect ratio
ffmpeg -i input.mp4 -vn -acodec copy audio.aac
ffmpeg -i audio.wav -acodec libmp3lame -b:a 192k output.mp3
ffmpeg -i input.mp4 -vf "fps=10,scale=480:-1:flags=lanczos" -c:v gif output.gif