Check available FFmpeg encoders before writing encoding scripts to avoid library version mismatches
61
71%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./benchmarks/gdpval/skills/ffmpeg-encoder-check-4855c0/SKILL.mdBefore writing any FFmpeg encoding script, always probe the system for available encoders. This prevents failures from missing or incompatible codec libraries (especially libopenh264 which frequently has version mismatches).
Always run this command before deciding on encoding parameters:
ffmpeg -encoders | grep h264This shows which H.264 encoders are available on the system.
Priority order for H.264 encoding:
-c:v copy - If source and target resolution/format match, copy the stream without re-encoding (fastest, no quality loss)
-c:v libx264 - If available, this is the most reliable and widely-compatible H.264 encoder
-c:v h264 - Hardware acceleration if available (varies by system)
Avoid libopenh264 - This encoder frequently has library version mismatches causing runtime failures
After choosing an encoder, verify it works with a short test:
ffmpeg -t 5 -i input.mp4 -c:v libx264 -preset fast -crf 23 -c:a copy test_output.mp4#!/bin/bash
# Check available encoders
ENCODERS=$(ffmpeg -encoders 2>/dev/null | grep h264)
if echo "$ENCODERS" | grep -q "libx264"; then
VIDEO_CODEC="libx264"
echo "Using libx264 encoder"
elif echo "$ENCODERS" | grep -q "h264"; then
VIDEO_CODEC="h264"
echo "Using h264 encoder"
else
VIDEO_CODEC="copy"
echo "No H.264 encoder available, using stream copy"
fi
# Use $VIDEO_CODEC in your ffmpeg command
ffmpeg -i input.mp4 -c:v $VIDEO_CODEC output.mp4Use -c:v copy when:
c5a9c4b
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.