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

runwaymlrunwayml 音频

Agent Skill

runwayml 用于处理图像、截图、视觉识别或图片素材相关工作,适合在 OpenClaw 中需要让 Agent 分析图片、整理视觉素材或辅助图像流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,398

周安装

187

GitHub Stars

公开资料未说明

下载量

1,541
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install runwayml

简介

使用 Runway API 实现 AI 视频、图像和音频内容生成。

  • 支持从文本生成视频、图像到视频的转换及角色动画创作。
  • 适合多媒体内容制作、广告素材生成或教育视频开发等场景。
  • 使用时需关注分辨率、时长和导出格式等技术参数限制。runwayml 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 涉及人物肖像或商业发布时,应提前获取版权授权并通过内容审核。

SKILL.md

name
runwayml
description
Generate AI videos, images, and audio with Runway API. Use when generating video from images, text-to-video, video-to-video, character performance, text-to-image, text-to-speech, sound effects, or voice processing with Runway.
license
MIT
compatibility
Requires internet access and a RunwayML API key stored as RUNWAYML_API_SECRET environment variable.
metadata
author
slightly-unrelated
version
1.0.0

Runway API Skill

Generate AI videos, images, and audio using Runway's API. Features Gen-4.5 — Runway's latest and most capable model — supporting both text-to-video and image-to-video generation, plus Gen-4 variants and third-party models from Google (Veo) and ElevenLabs.

Setup

  1. Get your API key from dev.runwayml.com
  2. Store it as RUNWAYML_API_SECRET in your environment
  3. Install the Node.js SDK: npm install @runwayml/sdk

Quick Start

Text-to-Video (gen4.5)

import RunwayML from "@runwayml/sdk";

const client = new RunwayML(); // reads RUNWAYML_API_SECRET automatically

const task = await client.textToVideo.create({
  model: "gen4.5",
  promptText: "A steaming bowl of noodles in a busy hawker centre, warm light, slow camera push-in",
  duration: 5,
  ratio: "1280:720"
}).waitForTaskOutput();

console.log("Video URL:", task.output[0]);

Image-to-Video (gen4.5)

import RunwayML from "@runwayml/sdk";
import fs from "fs";

const client = new RunwayML();

const imageData = fs.readFileSync("product.jpg");
const promptImage = `data:image/jpeg;base64,${imageData.toString("base64")}`;

const task = await client.imageToVideo.create({
  model: "gen4.5",
  promptImage,
  promptText: "Slow dolly-in toward the product jar, warm side lighting, sauce shimmer visible through glass",
  duration: 5,
  ratio: "1280:720"
}).waitForTaskOutput();

console.log("Video URL:", task.output[0]);

cURL (direct API)

# Text-to-video
curl -X POST "https://api.dev.runwayml.com/v1/image_to_video" \
  -H "Authorization: Bearer $RUNWAYML_API_SECRET" \
  -H "X-Runway-Version: 2024-11-06" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gen4.5",
    "promptText": "A serene mountain landscape at sunset",
    "ratio": "1280:720",
    "duration": 5
  }'

Available Models

Video Generation

ModelInputCredits/secNotes
gen4.5Text or Image12Newest & recommended
gen4_turboImage only5Fast I2V iteration
veo3.1Text or Image40Google Veo — includes audio
veo3.1_fastText or Image15Veo — audio, cheaper
gen4_alephVideo + Text/Image15Video-to-video transformation
act_twoImage or Video5Character performance/motion

Image Generation

ModelCreditsNotes
gen4_image5–8/imageHigh quality, supports style references
gen4_image_turbo2/imageFast iteration (requires reference image)

Audio (ElevenLabs via Runway)

ModelOutputCredits
eleven_multilingual_v2Text → Speech1/50 chars
eleven_text_to_sound_v2Text → Sound FX1/6 sec
eleven_voice_dubbingAudio → Dubbed1/2 sec

Valid Ratios

RatioFormat
1280:72016:9 landscape (standard)
720:12809:16 portrait (Reels/Stories)
1584:67221:9 ultra-wide
1104:8324:3
832:11043:4
960:960Square

Duration

  • gen4.5: 2–10 seconds
  • gen4_turbo: 5 or 10 seconds

Task Polling

All operations are async. The SDK's .waitForTaskOutput() handles polling automatically (10 min timeout).

Statuses: PENDINGTHROTTLEDRUNNINGSUCCEEDED / FAILED

Manual poll:

curl "https://api.dev.runwayml.com/v1/tasks/{task_id}" \
  -H "Authorization: Bearer $RUNWAYML_API_SECRET" \
  -H "X-Runway-Version: 2024-11-06"

Prompting Tips

  • Describe single scenes (5–10 sec clips)
  • Use clear physical descriptions, not abstract concepts
  • For camera movement: "slow dolly-in", "tracking shot", "push toward subject"
  • Avoid negative phrasing — "no blur" produces unpredictable results
  • Keep prompts grounded and physically plausible

Official Docs

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

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

平台分布

OpenClaw

73.24%
按下载量换算1,129

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills