Install
openclaw skills install facebook-video-downloaderDownload Facebook videos, Reels, and Stories in HD quality. Use when user provides a Facebook video URL and wants to download it, or asks to save/download FB content. Supports HD, SD, and MP3 audio extraction.
openclaw skills install facebook-video-downloaderThis skill is safe and transparent:
The skill simply acts as a bridge between OpenClaw and the savefbs.com API to help users download public Facebook videos for personal use.
Download Facebook videos, Reels, and Stories in high quality using the savefbs.com service.
Activate this skill when:
This skill uses a Python script that connects to the savefbs.com API to fetch download links.
python3 scripts/fetch_fb_video.py <facebook_video_url>
python3 scripts/fetch_fb_video.py "https://www.facebook.com/watch?v=123456789"
The script returns JSON with download options:
{
"success": true,
"title": "Video Title",
"thumbnail": "https://...",
"downloads": [
{
"quality": "HD",
"url": "https://...",
"extension": "mp4"
},
{
"quality": "SD",
"url": "https://...",
"extension": "mp4"
},
{
"quality": "Audio",
"url": "https://...",
"extension": "mp3"
}
]
}
fetch_fb_video.py with the URLIf the script returns "success": false, check:
Common error messages: