返回顶部
G

GrabGrab视频下载器

Use when the user wants to download a video or audio from a URL. Supports 20+ platforms including YouTube, X/Twitter, TikTok, Instagram, Facebook, Reddit, Bilibili, Vimeo, Dailymotion, SoundCloud, Twitch, Pinterest, Snapchat, Bluesky, VK, OK.ru, Rutube, Streamable, Loom, Tumblr, Newgrounds, Xiaohongshu and more. Trigger when user says "download video", "save video", "grab video", provides a video URL and wants to download it, or mentions downloading from supported platforms.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
223
下载量
免费
免费
1
收藏
概述
安装方式
版本历史

GrabGrab

GrabGrab - 视频与音频下载工具

通过链接从20多个平台下载视频和音频。由 GrabGrab 提供技术支持。

支持的平台(20+)

平台示例链接
YouTubeyoutube.com/watch、youtu.be/、youtube.com/shorts/、music.youtube.com
X / Twitter
x.com/.../status/、twitter.com/.../status/ | | TikTok | tiktok.com/@.../video/、vm.tiktok.com/ | | Instagram | instagram.com/p/、instagram.com/reel/、instagram.com/stories/ | | Facebook | facebook.com/.../videos/、fb.watch/ | | Reddit | reddit.com/r/.../comments/ | | Bilibili | bilibili.com/video/、b23.tv/ | | Vimeo | vimeo.com/ | | Dailymotion | dailymotion.com/video/ | | SoundCloud | soundcloud.com/ | | Twitch | twitch.tv/、clips.twitch.tv/ | | Pinterest | pinterest.com/pin/ | | Snapchat | snapchat.com/ | | Bluesky | bsky.app/ | | VK | vk.com/video、vk.com/clip | | OK.ru | ok.ru/video/ | | Rutube | rutube.ru/video/ | | Streamable | streamable.com/ | | Loom | loom.com/share/ | | Tumblr | tumblr.com/ | | Newgrounds | newgrounds.com/ | | 小红书 | xiaohongshu.com/、xhslink.com/ |

工作流程

第一步:调用 GrabGrab API

通过 Bash 工具使用 curl 调用 API:

bash
curl -s -X POST https://grabgrab.fun/api/download \
-H Content-Type: application/json \
-d {url: , videoQuality: }

视频质量选项(如用户未指定则询问,默认为 1080):

  • - max - 最佳可用质量
  • 2160 - 4K
  • 1440 - 2K
  • 1080 - 全高清(默认)
  • 720 - 高清
  • 480 - 标清
  • 360 - 低清
  • 144 - 最低清

下载模式选项(默认为 auto):

  • - auto - 视频含音频(默认)
  • audio - 仅音频
  • mute - 视频无音频

第二步:解析 API 响应

API 返回 JSON 格式数据。处理每种响应类型:

直接下载(type: direct):
json
{
success: true,
type: direct,
url: https://...,
filename: video.mp4
}

操作:使用 curl -L -o 下载文件。

选择器(type: picker)— 找到多个项目(例如 Instagram 轮播):
json
{
success: true,
type: picker,
items: [
{type: video, url: https://...},
{type: photo, url: https://...}
]
}

操作:向用户展示项目列表,询问需要下载哪些,或下载所有视频。

错误
json
{
success: false,
error: 错误信息
}

操作:向用户显示错误信息。

第三步:下载文件

对于直接下载:
bash
curl -L -o

对于需要通过代理的隧道/重定向链接:
bash
curl -L -o https://grabgrab.fun/api/proxy?url=downloadurl>

重要提示:如果直接链接下载失败或返回 HTML 而非视频文件,请使用代理端点重试:
bash
curl -L -o https://grabgrab.fun/api/proxy?url=$(python3 -c import urllib.parse; print(urllib.parse.quote(, safe=)))

第四步:向用户确认

下载完成后:

  • - 报告文件名和文件大小
  • 报告下载位置(当前工作目录或用户指定路径)

重要说明

  • - API 的速率限制为每分钟 30 次请求。如果收到 429 错误,请等待后重试。
  • 始终使用 -L 参数配合 curl 以跟随重定向。
  • 如果用户要求仅音频,将 downloadMode 设置为 audio。
  • 如果用户想要最佳质量,将 videoQuality 设置为 max。
  • 除非用户另有指定,默认下载位置为当前工作目录。
  • API 会自动从链接中检测平台 — 无需手动指定平台。

示例

用户:下载这个 YouTube 视频:https://www.youtube.com/watch?v=dQw4w9WgXcQ

操作:

  1. 1. 调用 API:curl -s -X POST https://grabgrab.fun/api/download -H Content-Type: application/json -d {url: https://www.youtube.com/watch?v=dQw4w9WgXcQ, videoQuality: 1080}
  2. 解析响应获取下载链接和文件名
  3. 下载:curl -L -o filename.mp4
  4. 报告:已下载 filename.mp4(15.2 MB)到当前目录。

用户:保存这个 TikTok 的音频:https://www.tiktok.com/@user/video/123

操作:

  1. 1. 使用 downloadMode: audio 调用 API:curl -s -X POST https://grabgrab.fun/api/download -H Content-Type: application/json -d {url: https://www.tiktok.com/@user/video/123, downloadMode: audio}
  2. 解析并下载音频文件
  3. 报告结果

用户:/GrabGrab https://www.bilibili.com/video/BV1xx411c7mD

操作:

  1. 1. 使用默认设置(1080p,自动模式)调用 API
  2. 下载视频
  3. 报告结果

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 grabgrab-1776112941 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 grabgrab-1776112941 技能

通过命令行安装

skillhub install grabgrab-1776112941

下载

⬇ 下载 GrabGrab v1.0.0(免费)

文件大小: 2.71 KB | 发布时间: 2026-4-15 12:57

v1.0.0 最新 2026-4-15 12:57
- Initial release of GrabGrab: Download video and audio from 20+ platforms by URL.
- Supports YouTube, Twitter/X, TikTok, Instagram, Facebook, Reddit, Bilibili, and more.
- Handles user requests to download or save video/audio from supported platforms.
- Allows choosing video quality and audio-only or video-only downloads.
- Detects when multiple media items are available and prompts user selection.
- Provides clear download status, file name, size, and location after completion.

https://www.grabgrab.fun/

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部