用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill ffmpeg命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
基于 SOC 职业分类
正在显示 SKILL.md
| name | FFmpeg |
| description | Process video and audio with correct codec selection, filtering, and encoding settings. |
| metadata | {"clawdbot":{"emoji":"🎬","requires":{"bins":["ffmpeg"]},"os":["linux","darwin","win32"]}} |
-ss BEFORE -i: fast seek, may be inaccurate—starts from nearest keyframe-ss AFTER -i: frame-accurate but slow—decodes from start-ss 00:30:00 -i input.mp4 -ss 00:00:05—fast seek then accurate trim-avoid_negative_ts make_zero to fix timestamp issues-map 0:v:0 -map 0:a:1—first video, second audio-map 0:a—all audio streams-map 0 -c copy—all streams, no re-encoding-map 0 -map -0:s—all except subtitles-preset: ultrafast to veryslow—slower = smaller file at same quality-crf and -b:v mutually exclusive—use one or the other-c copy—fast, no quality loss-vf "scale=1280:720"—single filter chain-filter_complex "[0:v]scale=1280:720[scaled]"—named outputs for routing-vf "scale=1280:720,fps=30"—comma-separatedscale=1280:720 or scale=-1:720 for auto-width maintaining aspectcrop=640:480:100:50—width:height:x:y from top-leftfps=30—change frameratetrim=start=10:end=20,setpts=PTS-STARTPTS—setpts resets timestampsoverlay=10:10—position from top-left-ar 48000—standard for video-ac 2—stereo-c:a aac -b:a 192k—AAC at 192kbps-filter:a loudnorm—EBU R128 loudness normalization-vn -c:a copy output.m4a—no video, copy audio-f concat -safe 0 -i list.txt -c copy-filter_complex "[0:v][0:a][1:v][1:a]concat=n=2:v=1:a=1"file 'video1.mp4' per line—escape special characters-vf "subtitles=subs.srt"—cannot be turned off-c:s mov_text (MP4) or -c:s srt (MKV)—user toggleable-map 0:s—include subtitle streams-map 0:s:0 subs.srt—first subtitle to file-hwaccel cuda or -hwaccel videotoolbox (macOS)-c:v h264_nvenc (NVIDIA), -c:v h264_videotoolbox (macOS)-c copy when not re-encoding—defaults to re-encode, slow and lossy-ss after -i for long videos—takes forever seeking-async 1 or -af aresample=async=1-c copy + -vf = erroroutput.mp4 without -c:v uses default, may not be H.264