DeepSeek Harness 插件

OpenFlowFrames

DeepSeek Harness plugin exposing OpenFlowFrames video frame interpolation (RIFE) as agent tools(英文原文)

跳到安装方式

来源信息

GitHub 仓库
ZeroHackz/OpenFlowFrames
最近更新
2026年8月13日
分类
自动化与任务
GitHub stars
4
载体类型
plugin
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

默认先复制一段 Prompt,让 Agent 读 GitHub 仓库和源码;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读 GitHub 仓库和源码。

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/ZeroHackz/OpenFlowFrames
插件名:OpenFlowFrames
作者:ZeroHackz

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器3 个文件
README.md来源说明 · 只读预览

OpenFlowFrames - Video Frame Interpolation for Windows

This project is a fork of the original Flowframes by n00mkrad. Huge thanks to him for creating and maintaining the powerful core of this application!

This fork is a lean, fully free and open reimagining: a modern Python GUI around the latest RIFE models — no Patreon tiers, no paid builds, no legacy codebase.

Screenshot

Main interface: pick a video or a folder of frames, choose a model and factor, interpolate.

![Main interface](screenshots/MainInterface.png)

✨ Features

  • Latest RIFE Models: RIFE 4.9 through 4.26 bundled in the repo — no external model server, fully self-contained.
  • Any GPU: Runs on AMD, Intel, and NVIDIA via rife-ncnn-vulkan — no CUDA or PyTorch required.
  • Modern GUI: A clean CustomTkinter dark-mode interface — no install needed beyond Python.
  • Video or Frame-Folder Input: Interpolate a video file, or a directory of PNG/JPG/WebP frames with a custom input framerate.
  • MP4 or PNG Output: Encode to H.264 MP4 (audio preserved) or export the interpolated frames as a PNG sequence.
  • Robust Frame Handling: Mixed resolutions and alpha/16-bit PNGs (common in AI-generated frames) are normalized automatically.
  • Portable Windows Executable: Build a self-contained portable app with one script — no Python needed on the target machine.
  • No Monetization: Fully free; no Patreon/PayPal integrations.

💻 How to Use (Easy Way)

Python GUI (recommended):

1. Clone this repository: ``bash git clone https://github.com/ZeroHackz/OpenFlowFrames.git ` 2. Double-click launcher-gui.bat` — it sets up a virtual environment on first run and launches the GUI.

Portable build:

Run build-portable.bat. The result in dist/ is fully self-contained:

dist/
  OpenFlowFramesPortable.exe
  packages/av/           (ffmpeg)
  packages/rife-ncnn/    (interpolator + bundled RIFE models)

Copy the dist folder anywhere and double-click the exe.

How It Works

1. ffprobe reads the input framerate and frame count (or you provide the FPS for a frame folder). 2. ffmpeg extracts frames (skipped for frame-folder input). 3. rife-ncnn-vulkan interpolates to frames × factor. 4. ffmpeg encodes H.264 at the multiplied framerate, copying the original audio — or the frames are exported as PNGs.

⌨️ Headless CLI

The same engine runs without the GUI — from scripts, CI, or agents:

python cli.py --probe --input C:\clips\dance.mp4
python cli.py --input C:\clips\dance.mp4 --factor 2 --model "RIFE 4.9" --output out.mp4
python cli.py --input C:\clips\frames --fps 24 --factor 4 --out-mode png --output out_frames

🤖 DeepSeek Harness Plugin

This repository is also a DeepSeek Harness (dsh) plugin bundle — install it into a dsh profile and an agent can interpolate video directly through two tools:

  • flowframes_probe — inspect a video or frame directory (resolution, fps, frame count, audio).
  • flowframes_interpolate — run RIFE interpolation headless (MP4 with audio, or PNG frames). Works on CPU or any GPU — AMD, Intel, or NVIDIA, no CUDA needed.
dsh plugin add github:ZeroHackz/OpenFlowFrames

Requirements on the machine running dsh: Python 3.10+ (or set OPENFLOWFRAMES_PYTHON). The bundled packages/rife-ncnn model files ship with the repo, so no model downloads are needed.

Example prompts for the agent

  • Interpolate E:\clips\dance.mp4 to 60fps with RIFE 4.9 and save it as dance-60fps.mp4
  • This folder of AI-generated frames is at 24fps — make a smooth 4x version, then export it as an MP4
  • Probe every video in E:\clips and list their fps and frame counts
  • Convert this 24fps clip to 120fps slow-motion footage and matte out the foreground afterwards (pairs with the GUI-SAM2Matting plugin)

Credits