Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Multi-Platform Channel Video Downloader

Give it a platform and an account ID/URL, and it pulls the channel's recent posts from Douyin, Kuaishou, Bilibili or YouTube, resolves direct download links, and can batch-download them.

Image & VideoIntermediate36347AI score 9/10Last updated: Aug 20, 2026

What it does

  • Takes a platform (douyin / kuaishou / bilibili / youtube) plus an account identifier and returns a table of recent posts with publish date, likes, comments, saves and shares.
  • Resolves per-post direct links for video, cover image and audio (watermark-free).
  • --download saves everything into output/; supports pagination (--page), date filtering (--date-start / --date-end), multiple accounts, JSON output and --rate-limit to avoid API throttling.
  • Ships an agent workflow that converts natural phrases like "last week" or "July posts" into the right date flags.

Who it's for

  • Short-form marketers who tear down competitor channels frame by frame
  • Creators backing up their own catalog locally
  • Influencer/KOL teams doing quick content due diligence before a collaboration

Examples

  1. --platform douyin --account "Fish688688" → table of the 10 latest posts with engagement metrics
  2. --platform youtube --account "https://www.youtube.com/@channel" --download --output-dir ./my_videos → batch download a channel into a chosen folder
  3. "Grab only July's videos from this Bilibili channel" → the agent runs it with --date-start 2026-07-01 --date-end 2026-07-31

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/redfox-data/redfox-community/HEAD/skills/account-video-downloader/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the skills/account-video-downloader folder from the GitHub repo redfox-data/redfox-community into my ~/.claude/skills/account-video-downloader/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/redfox-data/redfox-community.git && mkdir -p ~/.claude/skills && cp -r redfox-community/skills/account-video-downloader ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Clone the repository: git clone https://github.com/redfox-data/redfox-community.git
  2. Copy the skill into your Claude Code skills folder: mkdir -p ~/.claude/skills && cp -r redfox-community/skills/account-video-downloader ~/.claude/skills/
  3. Install the Python dependency: pip3 install requests
  4. Get an API key from the redfox.hk API keys page.
  5. Export it: macOS/Linux export REDFOX_API_KEY=ak_your_key; Windows PowerShell $env:REDFOX_API_KEY="ak_...". Add it to ~/.zshrc to persist.
  6. Restart Claude Code and ask something like "list the recent videos from this YouTube channel".

Note: Douyin and Kuaishou do not accept profile URLs — you must supply the Douyin ID or kwaiId. Respect platform terms and creator copyright when downloading.