Skip to content

docs: add Upload-Post for publishing generated videos#1

Open
mutonby wants to merge 1 commit intoIgorShadurin:masterfrom
mutonby:master
Open

docs: add Upload-Post for publishing generated videos#1
mutonby wants to merge 1 commit intoIgorShadurin:masterfrom
mutonby:master

Conversation

@mutonby
Copy link
Copy Markdown

@mutonby mutonby commented Mar 25, 2026

Summary

This PR adds documentation for publishing generated videos to TikTok, YouTube Shorts, and Instagram Reels using Upload-Post.

Changes

  • Added 'Publishing Your Videos' section after Technical Documentation
  • Shows how to upload videos to multiple platforms with a single API call

Why?

YumCut generates export-ready TikTok/Reels/Shorts videos, but users still need to manually upload to each platform. Upload-Post provides a single API to publish to all platforms simultaneously, completing the end-to-end production workflow.

Example

curl -X POST https://api.upload-post.com/upload \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -F "video=@output/video.mp4" \
  -F "platforms=tiktok,youtube,instagram"

This complements YumCut's 'end-to-end short-form production' positioning by adding automated distribution.

@gemini-code-assist
Copy link
Copy Markdown

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request significantly enhances the YumCut project's documentation by introducing a streamlined method for publishing generated videos. It addresses the current manual process of uploading videos to various social media platforms by integrating Upload-Post, a service that allows for simultaneous distribution to TikTok, YouTube Shorts, and Instagram Reels via a single API call. This addition completes the end-to-end production workflow, aligning YumCut with its goal of providing comprehensive short-form video solutions.

Highlights

  • New Documentation Section: Added a new 'Publishing Your Videos' section to the README.md to guide users on distributing generated content.
  • Automated Video Publishing: Integrated Upload-Post as a recommended tool for simultaneously publishing videos to TikTok, YouTube Shorts, and Instagram Reels.
  • API Example: Included a curl command example demonstrating how to use the Upload-Post API for multi-platform video distribution.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Copy Markdown

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request adds a new section to the README.md detailing how to publish generated videos using Upload-Post. The review suggests improving the clarity of this documentation by explicitly mentioning the need to download the video before uploading and using a more generic path placeholder in the curl example.

Comment thread README.md
Comment on lines +135 to +143
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"
```
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"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant