Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计通过

aliyun-video-style-repaint阿里云视频风格重画

Agent Skill

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

总安装

706

周安装

30

GitHub Stars

383

下载量

247
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

aliyun-video-style-repaint 用于视频风格迁移与重绘任务。

  • 支持输入视频与风格模板,输出符合指定视觉风格的成片。
  • 需安装 DashScope SDK 并设置 API 密钥,保存任务 ID 与最终视频链接。
  • 涉及外部素材使用时需确认版权合规性与内容审核要求。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Video Style Repaint

Validation

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

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

Output And Evidence

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

Prerequisites

  • Install SDK (recommended in a venv):
python3 -m venv .venv
. .venv/bin/activate
python -m pip install requests
  • Set DASHSCOPE_API_KEY in your environment, or add dashscope_api_key to ~/.alibabacloud/credentials.
  • This API is only available in the Beijing region. You must use a Beijing-region API Key.

Critical model names

  • video-style-transform -- supports 8 preset artistic styles

Supported styles

Style IDName (EN)Name (CN)
0Japanese Manga日式漫画
1American Comics美式漫画
2Fresh Comics清新漫画
33D Cartoon3D 卡通
4Chinese Cartoon国风卡通
5Paper Art纸艺风格
6Simple Illustration简易插画
7Chinese Ink Painting国风水墨

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

Normalized interface

Request

  • video_url (string, required) -- public HTTP/HTTPS URL of the input video
  • style (integer, optional) -- style ID 0-7 (default: 0, Japanese Manga)
  • video_fps (integer, optional) -- output frame rate, range [15, 25] (default: 15)
  • animate_emotion (boolean, optional) -- facial expression optimization (default: true)
  • min_len (integer, optional) -- output short-side pixels, 720 or 540 (default: 720)
  • use_SR (boolean, optional) -- super-resolution enhancement (default: false)

Video input limits

  • Formats: MP4, AVI, MKV, MOV, FLV, TS, MPG, MXF
  • Resolution: [256, 4096] pixels per side, aspect ratio max 1.8:1
  • Duration: up to 30 seconds
  • Max size: 100MB
  • URL: must be URL-encoded if contains non-ASCII characters

Response (task creation)

  • output.task_id (string) -- use for polling, valid 24 hours
  • output.task_status (string) -- PENDING | RUNNING | SUSPENDED | SUCCEEDED | FAILED
  • request_id (string)

Response (task result)

  • output.output_video_url (string) -- result video URL
  • output.task_status (string) -- final status
  • output.submit_time (string) -- task submission time
  • output.scheduled_time (string) -- task execution start time
  • output.end_time (string) -- task completion time
  • usage.duration (integer) -- video duration in seconds
  • usage.SR (integer) -- resolution used

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_style_repaint_task(video_url: str, style: int = 0) -> str:
    """Create a video style repaint task and return task_id."""
    payload = {
        "model": "video-style-transform",
        "input": {
            "video_url": video_url,
        },
        "parameters": {
            "style": style,
            "video_fps": 15,
        },
    }
    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", "SUSPENDED"):
            return data
        time.sleep(interval)

Error handling

ErrorLikely causeAction
401/403Missing or invalid DASHSCOPE_API_KEYCheck env var or credentials file
400 InvalidParameterUnsupported video format, bad dimensions, invalid styleValidate parameters
"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-video-style-repaint/videos/
  • Override base dir with OUTPUT_DIR.

Anti-patterns

  • Do not use model names other than video-style-transform.
  • Do not call this API synchronously -- async header is required.
  • Do not use style IDs outside 0-7 range.
  • Video URLs expire after 24 hours; download and persist immediately.
  • Do not use Singapore endpoint -- this API is Beijing-region only.

Workflow

  1. Confirm user intent: select desired artistic style from the 8 presets.
  2. Prepare video URL with valid format and dimensions.
  3. Configure parameters (style, fps, resolution, super-resolution).
  4. Create async task and poll for results.
  5. Download and save transformed 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.57%
按下载量换算88

Claude

29.49%
按下载量换算73

Cursor

20.57%
按下载量换算51

Gemini CLI

10.6%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills