Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →提供基于 FFmpeg 和 ImageMagick 的多媒体处理能力,支持视频和图像的格式转换、分辨率调整、压缩等操作
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-04 | ✗→✓ | ▲ Improved | 0% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 80% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 285% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 830% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 64% | 0% |
bash apt-get update && apt-get install -y ffmpeg imagemagick
scripts/ 中的视频处理脚本scripts/ 中的图像处理脚本scripts/video_convert.pyscripts/video_compress.pyscripts/video_scale.pyscripts/image_convert.pyscripts/image_scale.pyscripts/image_compress.py*.avi、images/*.png)./ 开头)python# 将 video.avi 转换为 video.mp4 python scripts/video_convert.py \ --input ./video.avi \ --output ./video.mp4 \ --format mp4
python# 将所有 PNG 转换为 JPG for file in ./images/*.png; do output="${file%.png}.jpg" python scripts/image_convert.py \ --input "$file" \ --output "$output" \ --format jpg \ --quality 85 done
python# 先缩放再压缩 python scripts/video_scale.py \ --input ./input.mp4 \ --output ./temp.mp4 \ --width 1280 \ --height 720 python scripts/video_compress.py \ --input ./temp.mp4 \ --output ./output.mp4 \ --bitrate 2M
Other measured skills in the registry, with their headline benchmark lift.