docs: add Upload-Post for publishing generated videos#1
docs: add Upload-Post for publishing generated videos#1mutonby wants to merge 1 commit intoIgorShadurin:masterfrom
Conversation
Summary of ChangesHello, 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 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 AssistThe 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
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 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
|
There was a problem hiding this comment.
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.
| 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" | ||
| ``` |
There was a problem hiding this comment.
To improve the clarity of this new documentation section, I have a couple of suggestions:
- Clarify the workflow: It would be helpful to explicitly mention that the user needs to download the generated video before they can upload it.
- Use a generic path placeholder: The example path
output/video.mp4might be confusing. Using a more generic placeholder like/path/to/your/video.mp4would 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.
| 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" |
Summary
This PR adds documentation for publishing generated videos to TikTok, YouTube Shorts, and Instagram Reels using Upload-Post.
Changes
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
This complements YumCut's 'end-to-end short-form production' positioning by adding automated distribution.