Video
PassAudited by ClawScan on May 1, 2026.
Overview
This is a coherent instruction-only video processing skill that uses standard local media tools and clearly limits itself to user-provided files.
This skill appears safe to install for local video processing. Before using it, make sure ffmpeg and ffprobe are trusted installations, review any batch command, and only point it at files or folders you intend to process.
Findings (3)
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.
The agent may run local video-processing commands that read input media and write output files.
The skill is designed to run local FFmpeg commands that create transformed media files. This is expected for the stated purpose, but users should still review commands and paths before execution.
Runs FFmpeg commands on user request
Use explicit input and output filenames, keep backups of originals, and review batch commands before allowing them to run.
If run in the wrong directory, a batch workflow could create many outputs or consume significant disk and CPU resources.
The documented batch workflow can process every matching video in a directory. This is purpose-aligned, but folder-wide operations should be user-directed and scoped.
for f in *.mp4; do ffmpeg -i "$f" -vf "lut3d=my_look.cube" -c:a copy "graded_$f" done
Run batch examples only in the intended folder and confirm the file pattern before execution.
Using optional captioning or upscaling features may require separately installed software.
The skill references optional third-party local tools but does not install them or specify sources. This is not suspicious for an instruction-only skill, but users should install optional tools from trusted sources.
Optional: - `whisper` — local transcription for captions - `realesrgan` — AI upscaling
Install optional tools only from official or trusted package sources and verify they are the expected binaries.
