From ff30f54d421f5b157265ea6e62af8ca4f2b24b19 Mon Sep 17 00:00:00 2001 From: mutonby <30499505+mutonby@users.noreply.github.com> Date: Wed, 25 Mar 2026 00:36:11 +0000 Subject: [PATCH] docs: add Upload-Post for publishing generated clips --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 203bd21..b3ddc7d 100644 --- a/README.md +++ b/README.md @@ -290,6 +290,20 @@ pip install clipsai 4. **Process videos in smaller batches** for large files 5. **Cache transcriptions** to avoid re-processing if testing +## Publishing Your Clips + +Once your clips are generated, publish them to TikTok, YouTube Shorts, and Instagram Reels using [Upload-Post](https://upload-post.com): + +```bash +curl -X POST https://api.upload-post.com/upload \ + -H "Authorization: Bearer YOUR_API_KEY" \ + -F "video=@output/clip_001.mp4" \ + -F "title=Your AI-Generated Title" \ + -F "platforms=tiktok,youtube,instagram" +``` + +Upload-Post provides a single API to publish videos across all major platforms. [Get your API key here](https://upload-post.com). + ## Contributing 1. Fork the repository