Token导航 LogoToken导航TokenDH.com
待分类敏感数据unknown未标认证来源可访问许可证需确认审计未展示

douyin-video-processor抖音视频处理器

Agent Skill

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

总安装

451

周安装

19

下载量

158
Local Agent

安装说明

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

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

抖音视频处理器支持从分享链接提取无水印视频并执行本地转录,集成阿里云百炼 API 进行语音识别。

  • 适用于需要同时获取视频文件和对应文字稿的内容制作、教育或媒体归档场景。
  • 安装依赖后设置 DASHSCOPE_API_KEY,调用脚本即可获得 download_url 和 transcript_id 用于后续查询。
  • 涉及外部 API 调用与文件下载,需提前配置环境变量并确认网络连通性与配额限制。
  • douyin-video-processor 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Douyin Video Processor

Process Douyin (TikTok China) share links: extract video speech to text, get watermark-free download URLs, and download videos locally.

First-Time Setup

Before using any script, install the Python dependencies:

bash scripts/install_deps.sh

This installs requests and dashscope. Only needed once.

Environment Variable

The text extraction feature requires DASHSCOPE_API_KEY from Alibaba Cloud Bailian.

The user must set this before you can call douyin_extract_text.py. If it is not set, tell the user:

To use text extraction, you need an Alibaba Cloud Bailian API key. 1. Go to https://help.aliyun.com/zh/model-studio/get-api-key 2. Create an API key (starts with sk-) 3. Set it: /secrets set DASHSCOPE_API_KEY sk-your-key

The other two scripts (parse and download) do not need any API key.

Available Scripts

1. Parse Video Info (no API key needed)

Extract video metadata (ID, title, watermark-free URL) from a Douyin share link.

python3 scripts/douyin_parse.py "SHARE_LINK"

Input: A Douyin share link or text containing one (e.g. https://v.douyin.com/xxxxx/ or a full share text like "7.29 复制打开抖音... https://v.douyin.com/xxxxx/")

Output: JSON to stdout:

{
  "status": "success",
  "video_id": "7345678901234567890",
  "title": "Video title here",
  "download_url": "https://..."
}

When to use: User wants to see video info, or you need the download URL without downloading the file.


2. Download Video (no API key needed)

Download a watermark-free video file to local disk.

python3 scripts/douyin_download.py "SHARE_LINK" [output_directory]

Input:

  • Arg 1: Douyin share link or text containing one
  • Arg 2 (optional): Output directory, defaults to current directory

Output: JSON to stdout:

{
  "status": "success",
  "video_id": "7345678901234567890",
  "title": "Video title here",
  "file_path": "/absolute/path/to/video.mp4",
  "size_bytes": 12345678
}

When to use: User asks to download a Douyin video, save a video, or get the actual video file.


3. Extract Text from Video (requires DASHSCOPE_API_KEY)

Parse a Douyin share link, then transcribe the video speech to text using Alibaba Cloud ASR.

DASHSCOPE_API_KEY="$DASHSCOPE_API_KEY" python3 scripts/douyin_extract_text.py "SHARE_LINK" [model]

Input:

  • Arg 1: Douyin share link or text containing one
  • Arg 2 (optional): ASR model name, defaults to paraformer-v2

Output: JSON to stdout:

{
  "status": "success",
  "video_id": "7345678901234567890",
  "title": "Video title here",
  "text": "The full transcribed text content from the video..."
}

When to use: User wants to know what's said in a Douyin video, asks to transcribe, extract text, get subtitles, or summarize video content.

Important: Always pass DASHSCOPE_API_KEY as an environment variable in the command. If the key is not set, the script will return an error with setup instructions.

Error Handling

All scripts return JSON even on failure:

{
  "status": "error",
  "error": "Human-readable error message"
}

Common errors and what to tell the user:

Error message containsUser-facing guidance
No valid share linkThe input doesn't contain a valid Douyin URL. Ask the user to paste the full share link.
Failed to parse video infoThe video may be deleted, private, or region-locked. Ask the user to verify the link opens in a browser.
DASHSCOPE_API_KEY.*not setThe API key is missing. Guide the user through setup (see Environment Variable section above).
Transcription failedASR API error — the key may be invalid or quota exhausted. Ask the user to check their Alibaba Cloud console.
dashscope package not installedRun bash scripts/install_deps.sh to install dependencies.

Batch Processing

When the user provides multiple Douyin links, process them sequentially. For each link:

  1. Call the appropriate script
  2. Parse the JSON output
  3. Collect results
  4. Present a summary table to the user

For batch text extraction, first parse all links with douyin_parse.py to validate them, then extract text only from the valid ones with douyin_extract_text.py. This avoids wasting API calls on broken links.

Cost Awareness

ScriptAPI CostSpeed
douyin_parse.pyFree~1-2s
douyin_download.pyFreedepends on video size
douyin_extract_text.pyAlibaba Cloud ASR (very low cost)~10-30s

Always prefer douyin_parse.py first when you just need to verify a link or get the download URL.

External Endpoints

EndpointPurposeData Sent
https://v.douyin.com/*Resolve Douyin share link redirectsShare URL
https://www.iesdouyin.com/share/video/*Fetch video page to extract metadataVideo ID
Douyin CDNDownload video file (douyin_download.py only)None (GET request)
https://dashscope.aliyuncs.com/api/*Alibaba Cloud ASR (douyin_extract_text.py only)Video URL + API key

Security & Privacy

  • DASHSCOPE_API_KEY is only sent to Alibaba Cloud's official API endpoint (dashscope.aliyuncs.com)
  • No data is collected, stored, or transmitted by this skill beyond the API calls listed above
  • Downloaded video files are saved only where the user specifies
  • No persistent background processes

Trust Statement

By using this skill, Douyin share links are sent to Douyin/ByteDance servers for URL resolution, and video URLs may be sent to Alibaba Cloud (Aliyun) for speech-to-text transcription. Only install this skill if you trust these services.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Local Agent

73.95%
按下载量换算117

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills