Qc clip
Sanity-check a rendered short with ffprobe. Verifies duration is in range and file size is non-trivial. Pass/fail boolean plus a short reason. Use as a final gate before saving a render.From its SKILL.md
npx -y skills add jperrello/C0BALT_CUT --skill qc-clipAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
0.8 KB, 186 tokens by cl100k_base, as published. Nobody here has run it
qc-clip
Lightweight sanity check. No quality metrics theatre.
Inputs
input: video pathmin_duration(optional): default15max_duration(optional): default90min_size_kb(optional): default100
Output
{
"pass": true,
"duration": 31.4,
"size_kb": 4820,
"reason": ""
}
On failure, pass: false and reason contains the first failing check (e.g. "duration 9.2s below min 15s").
How
ffprobe -v error -show_entries format=duration,size -of json <in>- Compare against thresholds.
- Print/return verdict JSON.
Status
Implemented — qc-clip.sh.
What ships with it: 1 file
1.1 KB alongside SKILL.md, 1 of them executable
- qc-clip.shruns1.1 KB