openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > douyin-video

抖音视频下载工具 - 解析抖音链接,下载视频并发送

媒体与内容

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.3

统计:⭐ 0 · 200 · 1 current installs · 1 all-time installs

0

安装量(当前) 1

🛡 VirusTotal :良性 · OpenClaw :可疑

Package:andjie98/douyin-video

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :可疑

OpenClaw 评估

The skill is mostly consistent with a Douyin downloader, but the code will fetch and save arbitrary network resources (follows redirects and uses extracted play_url) and writes files under the user's home — this creates SSRF/exfiltration and local-file risks that the README doesn't call out.

目的

Name/description, required binary (node), SKILL.md, and included script align with a Douyin downloader. Minor mismatch: SKILL.md claims 'no environment variables needed', but the script reads HOME to build a path (normal but not declared). Overall capability requested (network fetch + write) is expected for a downloader.

说明范围

The runtime instructions and script accept an arbitrary share URL and perform network requests (follow redirects) and then download the extracted play_url. There is no validation of hostname/URL, so a maliciously-crafted share page or redirect could cause the agent to request internal services (SSRF risk) or arbitrary external hosts. The script writes a fixed file under ~/.openclaw/workspace/douyin-downloads and deletes the previous file (no s…

安装机制

Instruction-only skill with no install spec; only requires node to run. No downloads or archive extraction during install, which is low-risk.

证书

The skill requests no credentials or env vars. It does read process.env.HOME to construct paths (expected). No other sensitive environment access is requested. Proportional to purpose, but HOME usage should be noted in the README (it currently says '无需配置').

持久

always:false and no special privileges or persistence. The skill writes files to the user's workspace directory but does not modify other skills or system-wide settings. Autonomous invocation is allowed by default (platform normal) — combine with the network concerns above when deciding to install.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「douyin-video」。简介:抖音视频下载工具 - 解析抖音链接,下载视频并发送。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/andjie98/douyin-video/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: douyin-video
description: 抖音视频下载工具 - 解析抖音链接,下载视频并发送
categories:
  - media
  - downloader
emoji: 📹
metadata:
  openclaw:
    requires:
      bins: ["node"]
---

# 抖音下载器

## 功能

- 🎬 解析抖音分享链接
- 📥 下载抖音视频到本地
- 💾 返回视频文件路径

## 使用方法

### 在 OpenClaw 中调用

```bash
node ~/.openclaw/workspace/skills/douyin-downloader/scripts/douyin.js "抖音分享链接"
```

### 输出

返回视频信息和本地文件路径:
- 视频标题
- 作者
- 点赞数
- 收藏数
- 分享数
- 本地文件路径(`~/.openclaw/workspace/douyin-downloads/douyin_last.mp4`)

**注意**: 
- 视频文件保存在工作区目录,**不会被系统自动清理**
- **自动清理**: 下载新视频时,会自动删除上一个视频
- **只保留一个视频**: 始终使用固定文件名 `douyin_last.mp4`
- **节省空间**: 不会累积多个视频文件
- 如需保留某个视频,请在下载后手动复制到其他目录

## 环境变量

无需配置,直接使用!

## 示例

**输入**:
```
https://v.douyin.com/FSfWiKriBuY/
```

**输出**:
```json
{
  "title": "这就是大大阮迪慧中的大大吗",
  "author": "香菇菇",
  "video_id": "7616783829047129778",
  "file_path": "~/.openclaw/workspace/douyin-downloads/douyin_last.mp4",
  "file_size": "3.73MB",
  "statistics": {
    "digg_count": 285756,
    "share_count": 180347,
    "collect_count": 40346
  }
}
```