Install
$ agentstack add skill-godot-fun-godot-framework-video-to-ogv ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Video to OGV
Convert supported video formats to OGV (Theora video + Vorbis audio in an Ogg container) via FFmpeg.
Default (no flags): lossy sources always go through a lossless intermediate first, then OGV — to minimize generation loss.
- Export FFV1 + FLAC lossless MKV to
lossless/ - Encode Theora q=10 + Vorbis q=10 OGV to
ogv/
Only Theora encoding is lossy; the intermediate decode is bit-perfect. Use --fast or --no-lossless only when the user explicitly prioritizes speed or file size over quality.
Rules
When this skill applies, read and follow [skill-dependency-manager](../../rules/skill-dependency-manager.md) — run scripts as documented, install missing tools into .dependency/.
Quick Start
Convert a file or folder:
.dependency/python/python .cursor/skills/video-to-ogv/scripts/convert.py path/to/video_or_folder
Example:
assets/video/intro.mp4
→ assets/video/lossless/intro.mkv (FFV1+FLAC intermediate)
→ assets/video/ogv/intro.ogv (final Godot asset)
Batch with subfolders:
.dependency/python/python .cursor/skills/video-to-ogv/scripts/convert.py Video/Cutscenes -r
Format Defaults
| Setting | Default | Notes | |---------|---------|-------| | Pipeline | Lossless → OGV | Skipped when source is already lossless | | Intermediate | FFV1 + FLAC (.mkv) | Written to lossless/; large but bit-perfect decode | | Final container | OGG (.ogv) | Godot VideoStreamTheora format | | Final video | Theora q=10 | Single-pass from lossless intermediate | | Final audio | Vorbis q=10 | Preserves source rate unless overridden | | Resolution / frame rate | Preserve source | Never downscaled by default | | Existing Theora+Vorbis OGV | Stream copy | Bit-perfect when no overrides |
Disk Usage
Lossless intermediates are much larger than source MP4s (720p ≈ 50–200 MB per 10 s clip). They are kept in lossless/ for re-encoding. Delete manually when done, or pass --clean-lossless to remove after each successful OGV export.
Common Flags
-r · -o / --output-dir · --lossless-dir · --clean-lossless · -s / --sample-rate · --fast · --no-lossless · -vq / -aq · --standardize · --mono · --stereo · --dry-run · --overwrite
Skip lossless intermediate (direct 2-pass from lossy source; faster, lower quality):
.dependency/python/python .cursor/skills/video-to-ogv/scripts/convert.py Video/Cutscenes --no-lossless
Smaller/faster encode (no intermediate, fixed q=6):
.dependency/python/python .cursor/skills/video-to-ogv/scripts/convert.py Video/UI --fast -vq 4 -aq 4
Re-encode OGV from existing lossless MKV only (after deleting ogv/ output):
.dependency/python/python .cursor/skills/video-to-ogv/scripts/convert.py Video/Cutscenes --overwrite
Never overwrite source files. Supported inputs: .mp4, .mkv, .mov, .avi, .webm, .wmv, .flv, .m4v, .mpeg, .mpg, .ts, .mts, .m2ts, .3gp, .ogv, .ogg.
Agent Notes
- Use the bundled script, not hand-written
ffmpeg -i …commands. - Always use the default pipeline (lossless MKV → OGV) — run with no quality flags. Never pass
--no-losslessor--fastunless the user explicitly asks for speed/size over quality. - Do not downscale or change frame rate unless the user explicitly asks.
- Do not resample audio unless the user explicitly asks — omit
-sand--standardize. - Already Theora+Vorbis OGV? Stream-copied by default (no generation loss).
- Tell the user where
lossless/andogv/outputs are; they swap assets manually when ready. - Missing Python/FFmpeg → populate
.dependency/per skill-dependency-manager, retry same command. - Need 48 kHz audio batch → pass
--standardize. - FFmpeg pipeline details: [reference.md](reference.md)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: godot-fun
- Source: godot-fun/godot-framework
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.