q00/openclip · Archived

oc-proxy-converter

Internal OpenClip worker. Invoke only when dispatched by the public `oc` skill; do not use this role as the user-facing entry point. Converts DJI .LRF / GoPro .LRV (or any high-res source) into a lightweight, playable review proxy mp4. Use as the first step of flow 1 when the input is a low-res proxy file or when a downscaled review copy is needed.

First seen Jul 6, 2026

Installation

$ npx skills add q00/openclip --skill oc-proxy-converter

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from q00/openclip · top by installs.

npx skills add q00/openclip

Browse all from q00/openclip

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,285 B
  • docs SUMMARY.md 376 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 4 installs

SKILL.md

Proxy Converter

Turn a camera low-res proxy (.LRF, .LRV) or a heavy source into a review-ready mp4. LRF/LRV are H.264 elementary streams in a renamed container — usually a clean remux; we downscale to a review proxy by default.

Do this

  1. Confirm the input exists.
  2. Run:

``bash oc --project <PROJECT> proxy --input <FILE> --scale 640 ` - --scale 640 = ~360p-class review proxy (height 640, width auto). - Pass --scale 0` for a lossless stream copy (no re-encode) when the file is already small enough.

  1. Verify the output plays: ffprobe -v error -show_entries format=duration <out>.

Return (final message = JSON only)

{"role":"proxy-converter","input":"...","output":"...","duration_seconds":0,"scale":640,"status":"ok"}

Return "status":"error" with a "reason" if conversion or probe fails.