Loading...
Loading...
Compare original and translation side by side
PREREQUISITE: Runfirst to ensure the project has server-side capability.+check-compatibility
前置要求: 先运行确认项目具备服务端运行能力。+check-compatibility
+check-compatibility+check-compatibility+setup-api-key@runwayml/sdkrunwaymlRUNWAYML_API_SECRET.gitignore.env+setup-api-key@runwayml/sdkrunwaymlRUNWAYML_API_SECRET.gitignore.env| User wants... | Skill to use |
|---|---|
| Generate videos from text | |
| Animate images into video | |
| Edit/transform existing videos | |
| Generate images from text | |
| Generate images with references | |
| Text-to-speech | |
| Sound effects | |
| Voice isolation/dubbing | |
| Real-time conversational avatar | |
| Avatar with domain knowledge | |
| Multiple capabilities | Integrate each one, sharing the same client instance |
| 用户需求 | 所需使用的技能 |
|---|---|
| 文本生成视频 | |
| 图片动效生成视频 | |
| 编辑/转换现有视频 | |
| 文本生成图片 | |
| 参考图生成图片 | |
| 文本转语音 | |
| 音效生成 | |
| 人声分离/配音 | |
| 实时对话虚拟人 | |
| 具备领域知识的虚拟人 | |
| 多项能力需求 | 复用同一个客户端实例,分别集成对应能力 |
Does the input come from a public HTTPS URL?
├── YES → Pass the URL directly to the API
└── NO → Is it a local file or user-uploaded file?
├── YES → Use +integrate-uploads to upload first, then pass runway:// URI
└── NO → Is it small enough for a data URI? (< 5MB image, < 16MB video)
├── YES → Convert to base64 data URI
└── NO → Use +integrate-uploadsDoes the input come from a public HTTPS URL?
├── YES → Pass the URL directly to the API
└── NO → Is it a local file or user-uploaded file?
├── YES → Use +integrate-uploads to upload first, then pass runway:// URI
└── NO → Is it small enough for a data URI? (< 5MB image, < 16MB video)
├── YES → Convert to base64 data URI
└── NO → Use +integrate-uploads