Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

aliyun-kling-video阿里云克林视频

Agent Skill

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

总安装

1,024

周安装

44

GitHub Stars

383

下载量

359
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:aliyun-kling-video(阿里云克林视频)
来源仓库:https://github.com/cinience/alicloud-skills
仓库路径:skills/aliyun-kling-video
安装命令:
npx skills add https://github.com/cinience/alicloud-skills --skill aliyun-kling-video
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cinience/alicloud-skills --skill aliyun-kling-video

简介

aliyun-kling-video 用于视频生成与动画合成项目开发。

  • 支持镜头组织、素材说明生成与渲染问题排查。
  • 需设置 DASHSCOPE_API_KEY 并安装 SDK,输出视频 URL 与任务日志。
  • 涉及人物肖像或商业内容时需核对版权授权与审核要求。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Kling V3 Video Generation

Validation

mkdir -p output/aliyun-kling-video
python -m py_compile skills/ai/video/aliyun-kling-video/scripts/generate_kling_video.py && echo "py_compile_ok" > output/aliyun-kling-video/validate.txt

Pass criteria: command exits 0 and output/aliyun-kling-video/validate.txt is generated.

Output And Evidence

  • Save task IDs, polling responses, and final video URLs to output/aliyun-kling-video/.
  • Keep at least one end-to-end run log for troubleshooting.

Prerequisites

  • Install dependencies (recommended in a venv):
python3 -m venv .venv
. .venv/bin/activate
python -m pip install requests
  • Set DASHSCOPE_API_KEY in your environment (must be Beijing region API Key).
  • Enable Kling in 百炼控制台 — search "kling" and activate.

Critical model names

  • kling/kling-v3-video-generation — standard model: t2v, i2v (first frame, first+last frame)
  • kling/kling-v3-omni-video-generation — omni model: adds reference-to-video, video editing, multi-subject references

Capabilities

CapabilityModelRequired media
Text-to-videobothnone
Smart storyboard (multi-shot)bothnone (use multi_prompt)
Image-to-video (first frame)bothfirst_frame
Image-to-video (first+last frame)bothfirst_frame + last_frame
Reference-to-videoomni onlyrefer and/or feature
Video editingomni onlybase + optional refer

API endpoint (async only)

POST https://dashscope.aliyuncs.com/api/v1/services/aigc/video-generation/video-synthesis

Required headers:

  • Authorization: Bearer $DASHSCOPE_API_KEY
  • Content-Type: application/json
  • X-DashScope-Async: enable

Region: Beijing only. No Singapore endpoint.

Normalized interface

Request (input)

  • prompt (string, conditional) — up to 2500 characters. Required for shot_type=intelligence. For omni reference-to-video, use <<<element_1>>>, <<<image_1>>>, <<<video_1>>> to reference media.
  • negative_prompt (string, optional) — content to exclude
  • media (array, optional) — media objects with type and url:

- Standard model types: first_frame, last_frame - Omni model types: first_frame, last_frame, refer, base, feature

  • multi_shot (boolean, optional) — enable multi-shot generation (default: false)
  • shot_type (string, conditional) — intelligence (AI auto-split) or customize (manual). Required when multi_shot=true.
  • multi_prompt (array, optional) — per-shot prompts when shot_type=customize
  • element_list (array, optional) — multi-subject element images (omni model only)
  • keep_original_sound (string, optional) — no (default) or yes, for videos (omni model only)

Request (parameters)

  • mode (string, optional) — pro (default, 1080P) or std (720P)
  • aspect_ratio (string, conditional) — 16:9 (default), 9:16, 1:1. Required for t2v and reference-to-video.
  • duration (integer, optional) — video length [3, 15] seconds (default: 5). When using reference video, [3, 10].
  • audio (boolean, optional) — generate audio (default: false). Affects pricing.
  • watermark (boolean, optional) — add "可灵 AI" watermark (default: false)

Media input limits

Images (first_frame, last_frame, refer):

  • Formats: JPEG, JPG, PNG (no transparency)
  • Resolution: [300, 8000] pixels per side
  • Max size: 10MB

Videos (base, feature):

  • Formats: mp4, mov
  • Duration: 3-10s
  • Resolution: [720, 2160] pixels per side
  • Frame rate: 24-60 fps
  • Max size: 200MB

Media combination rules

kling/kling-v3-video-generation:

  • i2v first frame: first_frame (1 image)
  • i2v first+last: first_frame + last_frame (1 each)

kling/kling-v3-omni-video-generation (all above plus):

  • Reference: feature only (1 video), or refer only (up to 7 with elements), or feature+refer (1 video + up to 4 with elements), or feature+first_frame (1 video + 1 image)
  • Video editing: base only (1 video), or base+refer (1 video + up to 4 with elements)

Response (task creation)

  • output.task_id (string) — valid 24 hours
  • output.task_status (string) — PENDING | RUNNING | SUCCEEDED | FAILED | CANCELED
  • request_id (string)

Response (task result)

  • output.video_url (string) — generated video URL
  • output.watermark_video_url (string) — watermarked video URL
  • usage.duration (integer), usage.size (string), usage.fps (integer), usage.audio (boolean)

Quick start (Python + HTTP)

import os
import json
import time
import requests

API_KEY = os.getenv("DASHSCOPE_API_KEY")
BASE_URL = "https://dashscope.aliyuncs.com/api/v1"

def create_kling_task(req: dict) -> str:
    """Create a Kling video generation task and return task_id."""
    payload = {
        "model": req.get("model", "kling/kling-v3-video-generation"),
        "input": {"prompt": req.get("prompt", "")},
        "parameters": {
            "mode": req.get("mode", "pro"),
            "duration": req.get("duration", 5),
            "audio": req.get("audio", False),
            "watermark": req.get("watermark", False),
        },
    }
    if req.get("aspect_ratio"):
        payload["parameters"]["aspect_ratio"] = req["aspect_ratio"]
    if req.get("negative_prompt"):
        payload["input"]["negative_prompt"] = req["negative_prompt"]
    if req.get("media"):
        payload["input"]["media"] = req["media"]

    resp = requests.post(
        f"{BASE_URL}/services/aigc/video-generation/video-synthesis",
        headers={
            "Authorization": f"Bearer {API_KEY}",
            "Content-Type": "application/json",
            "X-DashScope-Async": "enable",
        },
        json=payload,
    )
    resp.raise_for_status()
    data = resp.json()
    return data["output"]["task_id"]

def poll_task(task_id: str, interval: int = 15) -> dict:
    """Poll until task completes. Returns final response."""
    while True:
        resp = requests.get(
            f"{BASE_URL}/tasks/{task_id}",
            headers={"Authorization": f"Bearer {API_KEY}"},
        )
        resp.raise_for_status()
        data = resp.json()
        status = data["output"]["task_status"]
        if status in ("SUCCEEDED", "FAILED", "CANCELED"):
            return data
        time.sleep(interval)

Usage examples

# Text-to-video
task_id = create_kling_task({
    "prompt": "一只小猫在月光下奔跑",
    "aspect_ratio": "16:9",
    "duration": 5,
    "mode": "std",
})

# Image-to-video (first frame)
task_id = create_kling_task({
    "prompt": "花朵绽放的延时摄影",
    "media": [{"type": "first_frame", "url": "https://example.com/flower.jpg"}],
    "duration": 5,
})

# Reference-to-video with omni model
task_id = create_kling_task({
    "model": "kling/kling-v3-omni-video-generation",
    "prompt": "一只<<<element_1>>>在月光下奔跑",
    "media": [{"type": "refer", "url": "https://example.com/cat.jpg"}],
    "aspect_ratio": "16:9",
})

Error handling

ErrorLikely causeAction
401/403Missing or invalid API KeyCheck env var, must be Beijing region
400 InvalidParameterBad media combination or missing required paramsValidate against model's media rules
"does not support synchronous calls"Missing X-DashScope-Async: enable headerAdd required header
429Rate limit or quotaRetry with backoff

Output location

  • Default output: output/aliyun-kling-video/videos/
  • Override base dir with OUTPUT_DIR.

Anti-patterns

  • Do not use model names other than kling/kling-v3-video-generation or kling/kling-v3-omni-video-generation.
  • Do not call this API synchronously — async header is required.
  • Do not use refer, base, or feature media types with the standard model — use omni only.
  • Do not mix incompatible media combinations.
  • Video URLs expire; download and persist immediately.
  • Beijing region only — do not use Singapore endpoint.

Workflow

  1. Confirm user intent: t2v, i2v, reference-to-video, editing, or storyboard.
  2. Select appropriate model (standard for basic t2v/i2v, omni for reference/editing).
  3. Prepare media array with correct types and valid URLs.
  4. Create async task and poll for results.
  5. Download and save generated video before URL expiration.

References

  • See references/api_reference.md for full HTTP API details.
  • See references/sources.md for source links.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.26%
按下载量换算127

Claude

31.37%
按下载量换算113

Cursor

18.47%
按下载量换算66

Gemini CLI

9.74%
按下载量换算35

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills