Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,20 @@ YumCut focuses on being the open-source/free analog for end-to-end short vertica

Technical setup and implementation details were moved to [docs/tech.md](docs/tech.md).

## Publishing Your Videos

Once your video is generated, publish it 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/video.mp4" \
-F "title=Your Video Title" \
-F "platforms=tiktok,youtube,instagram"
```
Comment on lines +135 to +143
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To improve the clarity of this new documentation section, I have a couple of suggestions:

  1. Clarify the workflow: It would be helpful to explicitly mention that the user needs to download the generated video before they can upload it.
  2. Use a generic path placeholder: The example path output/video.mp4 might be confusing. Using a more generic placeholder like /path/to/your/video.mp4 would make it clearer that the user needs to replace it with the actual path to their video file.

The code suggestion below incorporates these changes.

Suggested change
Once your video is generated, publish it 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/video.mp4" \
-F "title=Your Video Title" \
-F "platforms=tiktok,youtube,instagram"
```
Once your video is generated and you have downloaded it, publish it 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=@/path/to/your/video.mp4" \
-F "title=Your Video Title" \
-F "platforms=tiktok,youtube,instagram"


Upload-Post provides a single API to publish videos across all major platforms, completing your end-to-end short-form production workflow. [Get your API key here](https://upload-post.com).

## Free Clippie AI Alternative

If you are looking for a free Clippie AI alternative, YumCut is designed as an open-source path for similar short-form workflows:
Expand Down