Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

dy-video-to-textdy 视频转文字

Agent Skill

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

总安装

9,596

周安装

392

GitHub Stars

公开资料未说明

下载量

3,073
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:dy-video-to-text(dy 视频转文字)
来源仓库:https://github.com/hljwwyy123/dy-video-to-text
安装命令:
openclaw skills install dy-video-to-text
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install dy-video-to-text

简介

提取抖音视频语音转文本并下载无水印版本。

  • 适用于内容二次创作和字幕生成。dy-video-to-text 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 支持 MP4、MOV 等格式输出。
  • 需用户提供合法分享的视频链接。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 注意遵守平台版权政策和地域限制。

SKILL.md

name
douyin-video-processor
description
Extract speech-to-text from Douyin (TikTok China) videos, get watermark-free download links, and download videos. Use when user shares a Douyin link, asks to transcribe a Douyin video, wants to download a Douyin video without watermark, or needs to extract text from Chinese short videos.
homepage
https://github.com/yzfly/douyin-mcp-server
metadata
clawdbot
emoji
🎬
requires
env
["DASHSCOPE_API_KEY"]
anyBins
["python3"]
primaryEnv
DASHSCOPE_API_KEY
files
["scripts/*"]
os
["linux", "darwin", "win32"]

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

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

89.86%
按下载量换算2,761

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills