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.
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).
--downloadsaves everything intooutput/; supports pagination (--page), date filtering (--date-start/--date-end), multiple accounts, JSON output and--rate-limitto 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
--platform douyin --account "Fish688688"→ table of the 10 latest posts with engagement metrics--platform youtube --account "https://www.youtube.com/@channel" --download --output-dir ./my_videos→ batch download a channel into a chosen folder- "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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Clone the repository:
git clone https://github.com/redfox-data/redfox-community.git - Copy the skill into your Claude Code skills folder:
mkdir -p ~/.claude/skills && cp -r redfox-community/skills/account-video-downloader ~/.claude/skills/ - Install the Python dependency:
pip3 install requests - Get an API key from the redfox.hk API keys page.
- Export it: macOS/Linux
export REDFOX_API_KEY=ak_your_key; Windows PowerShell$env:REDFOX_API_KEY="ak_...". Add it to~/.zshrcto persist. - 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.