Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

runninghub-video跑步中心视频

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

1,497

周安装

63

GitHub Stars

公开资料未说明

下载量

524
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:runninghub-video(跑步中心视频)
来源仓库:https://github.com/darker314159/runninghub-video
安装命令:
openclaw skills install runninghub-video
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install runninghub-video

简介

runninghub-video 使用官方标准模型将图像动画化为视频。

  • 支持可灵、Seedance 等平台接口,适用于短视频与宣传片制作。
  • 可结合文本指令编辑画面与调整镜头节奏。
  • 安装命令:openclaw skills install runninghub-video;需指定输入图像与参数。
  • 输出分辨率与时长受限于模型配额,建议分批处理大项目。

SKILL.md

name
runninghub-video
description
Use RunningHub official standard-model APIs for image-to-video generation. Trigger when the user asks to use RunningHub, 可灵, Seedance, 万相, or other RunningHub video endpoints to turn one image or start/end frames into a video, especially when local files need to be uploaded first, tasks need polling via /openapi/v2/query, or completed videos should be downloaded automatically.

RunningHub Video

Use this skill to submit image-to-video jobs to RunningHub, poll task status, and download the finished video locally.

Quick Start

  1. Confirm the user wants RunningHub image-to-video rather than HTML/CSS animation or local FFmpeg edits.
  2. Use scripts/runninghub_video.py instead of hand-writing curl unless the user explicitly asks for raw API calls.
  3. Accept either:

- a public image URL - a local image path that should be uploaded through RunningHub's binary upload endpoint first

  1. Wait for /openapi/v2/query unless the user explicitly asks for submit-only behavior.
  2. Download the returned media immediately because RunningHub-hosted outputs and uploaded media links can expire.

Default Workflow

1. Pick the model

Use these stable shortcuts unless the user names a different endpoint:

  • wan-2.2: default choice for general image-to-video generation in this skill
  • kling-v3.0-std: strong alternative for high-quality single-image or start/end-frame generation
  • seedance-2.0-global: quality-oriented alternative with resolution and audio switches
  • seedance-2.0-global-fast: faster/cheaper Seedance variant
  • wan-2.2: Wan 2.2 image-to-video endpoint with RunningHub's numeric field names

2. Prepare the inputs

  • If the user provides a local file path, pass it directly to the script. The script uploads it to POST /openapi/v2/media/upload/binary and reuses the returned download_url.
  • If the user provides a public URL or a data: URI, pass it through unchanged.
  • If the user wants stronger transition control and the chosen model supports it, include an end frame.

3. Submit and wait

Run the helper from the skill directory:

python "C:\Users\Administrator\.codex\skills\
unninghub-video\scripts\
unninghub_video.py" `
  --image "C:\path\	o\start.png" `
  --prompt "镜头缓慢推进,人物抬头微笑,风吹动头发" `
  --out-dir "C:\path\	o\outputs"

For start/end frame generation:

python "C:\Users\Administrator\.codex\skills\
unninghub-video\scripts\
unninghub_video.py" `
  --image "C:\path\	o\start.png" `
  --end-image "C:\path\	o\end.png" `
  --prompt "从平静站立过渡到转身回望,镜头平滑推进" `
  --duration 5 `
  --out-dir "C:\path\	o\outputs"

4. Return useful output

When you finish, report:

  • which model/endpoint was used
  • the taskId
  • whether local images were uploaded first
  • the saved output path(s)
  • any prompt or parameter choices worth remembering

Command Patterns

Kling 3.0 std

python "C:\Users\Administrator\.codex\skills\
unninghub-video\scripts\
unninghub_video.py" `
  --model kling-v3.0-std `
  --image "C:\path\	o\image.png" `
  --prompt "电影感镜头,小幅推近,人物表情逐渐变化" `
  --duration 5 `
  --cfg-scale 0.8 `
  --sound true

Seedance 2.0 global

python "C:\Users\Administrator\.codex\skills\
unninghub-video\scripts\
unninghub_video.py" `
  --model seedance-2.0-global `
  --image "C:\path\	o\image.png" `
  --prompt "书页翻动时,文字化作发光蝴蝶飞散" `
  --resolution 720p `
  --ratio adaptive `
  --audio true `
  --real-person-mode true

Wan 2.2

python "C:\Users\Administrator\.codex\skills\
unninghub-video\scripts\
unninghub_video.py" `
  --image "C:\path\	o\image.png" `
  --prompt "产品绕镜头缓慢旋转,补光扫过金属表面" `
  --duration 5 `
  --wan-resolution auto

Parameters Worth Tuning

  • --prompt: motion, camera movement, atmosphere, and audio intent
  • --duration: model-specific duration string; keep it to values shown in the official endpoint docs
  • --end-image: use when the endpoint supports start/end-frame control
  • --out-dir: always set an explicit output directory for easier follow-up work
  • --submit-only: use when the user wants a task id without waiting
  • --poll-interval and --timeout: useful for long renders

Troubleshooting

  • If upload fails, verify the local file exists and the API key is valid.
  • If the task returns moderation or content-verification errors, keep the same image but soften the prompt or remove risky wording.
  • If the task succeeds but no download happens, inspect the raw query response and the returned results array.
  • If the user asks for a model not covered by the helper yet, read references/api_reference.md, then extend the script instead of crafting a one-off request.

References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.35%
按下载量换算390

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills