One-click scan & download videos from Candfans creators you subscribe to.
A Tampermonkey userscript to scan and download videos from Candfans creators you subscribe to.
Runs in the browser with your existing Candfans login session. It uses mux.js from jsDelivr to remux HLS segments into MP4 for in-browser downloads.
candfans.com or candfans.jpcandfans.com/username).tsv file with all video URLsThe exported .tsv file contains post_id, duration, title, and url columns.
The video URLs are public HLS streams (.m3u8) that can be downloaded with any tool:
# yt-dlp (recommended for bulk downloads)
yt-dlp "https://video.candfans.jp/user/.../xxx.m3u8" -o "video.mp4"
# ffmpeg
ffmpeg -i "https://video.candfans.jp/user/.../xxx.m3u8" -c copy video.mp4
candfans.com and candfans.jp pages, leveraging your existing login sessioncan_browsing === 1), it extracts the HLS video URLsOnly content from plans you have actively subscribed to is accessible. The script cannot bypass access controls.
.mp4; if mux.js is unavailable or remuxing fails, it falls back to a .ts file that can be remuxed with ffmpeg: ffmpeg -i video.ts -c copy video.mp4MIT