Mp4 To Gif

PassAudited by ClawScan on May 14, 2026.

Overview

This skill appears to locally convert user-selected videos to GIFs with ffmpeg, with no evidence of network access, credential use, persistence, or hidden behavior.

This skill looks safe for local video-to-GIF conversion. Before using it, make sure ffmpeg is installed from a trusted source and choose the output path carefully because existing GIF files may be overwritten.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If the chosen output GIF already exists, it may be overwritten during conversion.

Why it was flagged

The script invokes ffmpeg with the -y flag, which overwrites an existing output file without prompting. This is common for conversion scripts and is purpose-aligned, but users should be aware of possible output-file replacement.

Skill content
ffmpeg -y -i "$INPUT" -i "$PALETTE" ... "$OUTPUT"
Recommendation

Use a new output filename or back up existing GIFs before running the conversion.

What this means

The skill will only work if ffmpeg is installed, and the safety of the conversion depends on using a trusted ffmpeg installation.

Why it was flagged

The skill depends on an external ffmpeg binary, while the registry requirements list no required binaries. There is no automatic download or install script, so this is mainly a setup/provenance note.

Skill content
- **ffmpeg** must be installed and available in PATH
Recommendation

Install ffmpeg from a trusted package manager or official source, and consider the registry metadata incomplete for prerequisites.