ffmpeg-process
Installation
SKILL.md
FFmpeg Process Skill
FFmpeg is available as a CLI tool inside the sandbox container. Media files should be read from and written to the shared volume at {{SHARED_VOLUME}}.
Transcoding Video
Convert a video file to a different format or codec:
# Convert to MP4 with H.264 codec
ffmpeg -i {{SHARED_VOLUME}}/input/video.avi \
-c:v libx264 -preset medium -crf 23 \
-c:a aac -b:a 128k \
{{SHARED_VOLUME}}/output/video.mp4