Generate image and video memes on demand through the Memelord API with a set of ready-to-run helper scripts.
.env).```bash
export MEMELORD_API_KEY="YOUR_KEY"
```
chmod +x already applied. If you clone from somewhere that strips modes, just run:```bash
chmod +x scripts/*.sh
```
outputs/ folder to keep downloaded memes tidy:```bash
mkdir -p /root/.openclaw/workspace/outputs
```
| Script | Endpoint | Purpose |
|---|---|---|
| --- | --- | --- |
scripts/ai-meme.sh | POST /api/v1/ai-meme | Generate fresh image memes |
scripts/ai-meme-edit.sh | POST /api/v1/ai-meme/edit | Edit an existing image meme |
scripts/ai-video-meme.sh | POST /api/v1/ai-video-meme | Kick off async video meme renders |
scripts/ai-video-meme-edit.sh | POST /api/v1/ai-video-meme/edit | Re-caption an existing video meme |
scripts/video-render-remote.sh | GET /api/video/render/remote | Poll render job status / URLs |
scripts/verify-webhook.sh | helper | Validate webhook signatures |
All scripts accept --out so you can control where JSON responses land.
./scripts/ai-meme.sh "developer fixing bugs at 3am" --png ./outputs/meme.png
./scripts/ai-meme.sh "when the code works on the first try" --count 3 --png ./outputs/meme_%d.png
./scripts/ai-meme-edit.sh --from ./memelord_ai_meme.json \
--instruction "make it about javascript instead" --png ./outputs/edited.png
# or supply template metadata manually
./scripts/ai-meme-edit.sh --template-id abc-123 --template-data-file ./template_data.json \
--instruction "change the top text" --out ./outputs/edit.json
./scripts/ai-video-meme.sh "when the code works on the first try" --count 2 --out ./outputs/jobs.json
# with webhook callbacks
./scripts/ai-video-meme.sh "ship it" \
--webhook-url https://example.com/webhook \
--webhook-secret supersecret
./scripts/ai-video-meme-edit.sh --template-id abc-123 \
--caption "When the code works on the first try" \
--instruction "make it about not knowing why it works" \
--out ./outputs/video_edit_job.json
./scripts/video-render-remote.sh --job-id render-1740524400000-abc12 --out ./outputs/status.json
./scripts/verify-webhook.sh --secret "$WEBHOOK_SECRET" --body-file ./payload.json --signature "<hex>"
When you want Telegram/Signal/WhatsApp/etc. to show only the meme (no caption/link blob), follow this pattern:
ai-video-meme.sh, ai-meme.sh, etc.).video-render-remote.sh) until you see mp4Url (or url for images) in the JSON.```bash
curl -sSL "
```
For images, the --png flag already writes the file; otherwise curl the url the same way.
```
MEDIA:./outputs/hiring_engineers.mp4
```
(Swap the extension for .png/.webp for still memes.)
Because the attachment is the only thing in the reply, Telegram renders it inline without any auto-generated “description + link” chatter.
Credits: Memelord gives you 50 video/image credits per month on the base subscription. Top up or read more at https://www.memelord.com/docs.
共 1 个版本