Install
openclaw skills install douyin-dlDownload Douyin (抖音) short videos from URLs. Supports direct video links, search page links with modal_id, share links (v.douyin.com), and note links. Uses h...
openclaw skills install douyin-dlDownloads Douyin videos by opening the page in a headless browser, extracting the <video> source URL, and downloading via curl. This bypasses yt-dlp's cookie issues with Douyin's anti-scraping.
agent-browser (npm i -g agent-browser)curlpython3 scripts/douyin_download.py <URL> [--output-dir DIR] [--filename NAME]
https://www.douyin.com/video/<id> — direct video pagehttps://www.douyin.com/search/...?modal_id=<id> — search results with video modalhttps://v.douyin.com/<code> — share short linkshttps://www.douyin.com/note/<id> — note/image posts with video# Basic download to ~/Downloads
python3 scripts/douyin_download.py 'https://www.douyin.com/video/7577715519366576522'
# Custom output directory and filename
python3 scripts/douyin_download.py 'https://www.douyin.com/video/7577715519366576522' \
-o ~/Videos -f my_video
# From search page URL
python3 scripts/douyin_download.py 'https://www.douyin.com/search/关键词?modal_id=7577715519366576522'
agent-browser (headless Chromium)<video> element's currentSrc (CDN direct link)curl with proper Referer header