AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Video To 4k

skill-godot-fun-godot-framework-video-to-4k · by godot-fun

>-

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-godot-fun-godot-framework-video-to-4k

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-godot-fun-godot-framework-video-to-4k)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
yesterday

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Video To 4k? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Video to 4K

Convert supported videos to a unified 4K master:

| Spec | Value | |------|-------| | Resolution | 3840×2160 | | Frame rate | 60 FPS | | Video | H.265 Main10 (libx265, yuv420p10le) | | Video bitrate | 40 Mbps | | Audio | AAC 320 kbps | | Container | MP4 (.mp4, hvc1 tag) |

Pipeline

  1. Probe with ffprobe (width, height, fps, audio).
  2. Already 4K? (width ≥ 3840 and height ≥ 2160) → skip Video2X.
  3. Below 4KVideo2X Real-ESRGAN upscale (scale 2 or 4) to intermediate under 4k-upscaled/.
  4. Always FFmpeg final encode → 4k/ at the unified specs above.

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/.

  • Run convert.py through .dependency/python/python.exe. Never use host python / ffmpeg / video2x.
  • Never overwrite sources. Outputs go under 4k/ (final) and 4k-upscaled/ (Video2X intermediate).
  • Use the bundled script — do not hand-write equivalent video2x / ffmpeg commands.

Setup (first run)

FFmpeg + Python

Populate ffmpeg and python under .dependency/ per skill-dependency-manager.

Video2X (CLI)

Download the CLI release (not the Qt6 installer) from video2x releases and extract to .dependency/video2x/:

| Platform | Release asset | |----------|---------------| | Windows | video2x-windows-amd64.zipvideo2x.exe | | Linux | Video2X-x86_64.AppImage (or distro package) → register as bin |

Register in .dependency/manifest.json:

"video2x": {
  "populated": true,
  "bin": ".dependency/video2x/video2x.exe"
}

Use video2x (no .exe) or the AppImage path on Unix. Requires a Vulkan GPU and AVX2 CPU. Docs: Command Line.

Quick Start

.dependency/python/python.exe .cursor/skills/video-to-4k/scripts/convert.py path/to/video_or_folder

Example:

assets/video/clip.mp4
  → assets/video/4k-upscaled/clip.mkv   (Video2X, only if below 4K)
  → assets/video/4k/clip.mp4            (final master)

Already-4K source → only 4k/clip.mp4 (FFmpeg only).

Batch with subfolders:

.dependency/python/python.exe .cursor/skills/video-to-4k/scripts/convert.py Video/Cutscenes -r

Anime / cartoon content (Real-ESRGAN anime model):

.dependency/python/python.exe .cursor/skills/video-to-4k/scripts/convert.py clip.mp4 --anime

Defaults

| Setting | Default | Notes | |---------|---------|-------| | Upscaler | Real-ESRGAN realesrgan-plus | General / live-action | | --anime | realesr-animevideov3 | Anime / illustration | | Scale | Auto 2 or 4 | Smallest factor that meets or exceeds 4K | | Intermediate | High-bitrate HEVC MKV in 4k-upscaled/ | Kept for re-encode; delete manually or --clean-upscaled | | Final | Always re-encode | Even if source already matches specs | | Existing 4k/ file | Skipped | Pass --overwrite to replace |

Common Flags

-r · -o / --output-dir · --upscaled-dir · --clean-upscaled · --anime · --gpu · --dry-run · --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

  1. Use the bundled script only.
  2. Missing Python / FFmpeg / Video2X → populate .dependency/, set populated: true, retry the same command.
  3. Tell the user where 4k/ (and 4k-upscaled/ if used) outputs are; they swap assets manually.
  4. Default model is general (realesrgan-plus). Pass --anime for anime/cartoon.
  5. FPS is forced to 60 via FFmpeg (fps=60) — frame duplication/drop, not RIFE. Say so if the source is not already ~60.
  6. Pipeline / FFmpeg / Video2X 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.