Runway Aleph API
フレームレベルの連続性を持つプロンプトガイドの動画編集向けにRunway Aleph APIにアクセスできます。
curl -X POST https://runapi.ai/api/v1/runway_aleph/edit_video \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "runway-aleph",
"video_url": "https://cdn.runapi.ai/public/samples/video.mp4",
"prompt": "このオフィスウォークスルー動画を水彩画スタイルに変換し、カメラの動きを維持してください。"
}'
import { RunwayAlephClient } from "@runapi.ai/runway-aleph";
const client = new RunwayAlephClient();
const result = await client.editVideo.run({
model: "runway-aleph",
video_url: "https://cdn.runapi.ai/public/samples/video.mp4",
prompt: "このオフィスウォークスルー動画を水彩画スタイルに変換し、カメラの動きを維持してください。",
});
<?php
require __DIR__ . "/vendor/autoload.php";
use RunApi\RunwayAleph\RunwayAlephClient;
$client = new RunwayAlephClient();
$result = $client->editVideo->run([
'model' => 'runway-aleph',
'video_url' => 'https://cdn.runapi.ai/public/samples/video.mp4',
'prompt' => 'このオフィスウォークスルー動画を水彩画スタイルに変換し、カメラの動きを維持してください。',
]);
require "runapi/runway_aleph"
client = RunApi::RunwayAleph::Client.new
result = client.edit_video.run(
model: "runway-aleph",
video_url: "https://cdn.runapi.ai/public/samples/video.mp4",
prompt: "このオフィスウォークスルー動画を水彩画スタイルに変換し、カメラの動きを維持してください。"
)
npx skills add runapi-ai/runway-aleph -g
# Claude Code
claude mcp add runapi -s user -- npx -y @runapi.ai/mcp
# Codex
codex plugin install runapi-mcp@agents
# Cursor / Windsurf / VS Code
npx @runapi.ai/mcp init cursor
Runway Alephはフレームの連続性が高いプロンプトガイドの動画編集に特化しており、モーションと時系列構造を保持しながら既存の映像をスタイルやコンテンツで変換できます。
- 品質とレイテンシ目標に合わせたモデルバリアント
- 統合 API key
- Model skill に docs、schema、セットアップメモを同梱
- 失敗した生成は課金されません
料金
仕様
| モデル ID | runway-aleph |
| プロバイダー | Runway |
| モダリティ | video |
| タスク種別 | asynchronous |
| 課金 | call |
| Endpoint | /api/v1/runway_aleph/edit_video |
| 商用利用 | はい |
| カタログステータス | 稼働中 |
アプリ開発用に Runway Aleph skill をインストール
モデル docs、schema、料金メモ、セットアップ手順をコード作業環境に読み込みます。
# Install the model skill for app development workflows
npx skills add runapi-ai/runway-aleph -g
Install the Runway Aleph skill for this app: 1. Add runapi-ai/runway-aleph with the skills installer. 2. Load SKILL.md in this workspace. 3. Use its docs, schemas, pricing notes, and setup steps when adding model features. 4. Confirm the install path when done.
この model skill で構築する方法
モデルを選ぶ
出力タイプ、品質基準、レイテンシ目標に合うモデルとバリアントを選びます。
一度だけ認証
対応するすべてのモデルに RunAPI key を使います。
skill をインストール
機能実装の前に model skill をコード作業環境へ追加します。
出力を受け取る
task ID でポーリングするか、生成完了時の callback を処理します。
Runway Aleph の位置づけ
Runway Alephはモーションを保持しながら映像を変換するためのRunwayの動画編集モデルです。RunAPI経由では、すべてのRunwayモデルと同じAPIアクセスを共有します。
RunAPI 経由で Runway Aleph を使う理由
1つの API key
モデルやプロバイダーをまたいで同じ認証情報を使えます。
Skill-ready
model skill に schema、セットアップメモ、料金コンテキスト、モデル ID が含まれます。
予測しやすい請求
呼び出し前に従量料金を確認できます。
よくある質問
プロンプトガイドの動画編集とは何ですか?
Runway Alephは既存の映像を受け取り、元のモーションとカメラの動態を保持しながら、テキストプロンプトに基づいてその視覚スタイルやコンテンツを変換します。
元のモーションは保持されますか?
はい — Alephはフレームレベルの時系列連続性を維持し、視覚スタイルを変更しながらカメラの動き、被写体のモーション、タイミングを保持します。
どのようなスタイルを適用できますか?
テキストで表現できるあらゆるスタイル — 水彩、油絵、アニメ、サイバーパンク、ヴィンテージフィルムなど。モデルはスタイルプロンプトをクリエイティブに解釈します。
サポートされている入力動画フォーマットは?
MP4が主要なサポートフォーマットです。最良の結果のために、APIドキュメントに記載されたサイズと尺の制限内にしてください。
AlephはRunwayとどう違いますか?
標準Runwayはテキストや画像から動画を生成します。Alephは既存の映像を変換するために特化しており、ジェネレーターではなく編集ツールです。
このモデルはどう呼び出しますか?
model skill をインストールし、RunAPI key とセットアップメモに従ってください。
失敗した生成は課金されますか?
失敗した生成は課金されません
アプリケーションから呼び出せますか?
はい。コード作業環境に model skill をインストールし、モデル機能を追加するときに利用してください。
Runway Aleph に近いモデル
Runway Aleph で構築を開始。
- edit_video