feat: add video publishing functionality - #15
Open
willlbefree wants to merge 2 commits into
Open
Conversation
added 2 commits
March 12, 2026 18:54
- Add post-video command to creator.py - Implement CreatorEndpointsMixin methods: get_video_upload_permit(), upload_video(), create_video_note() - Add video format validation and cover image handling - Update README with usage examples - Tested with MP4/MOV files, works perfectly for English content Closes #feature-request-video-publishing
… endpoint and proper Unicode handling
8 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add Video Publishing Support to xiaohongshu-cli
Overview
This PR adds comprehensive video publishing functionality to the xiaohongshu-cli tool, enabling users to publish video notes directly from the command line.
Features Added
New Command:
post-videoNew Client Methods
get_video_upload_permit(): Obtain video upload permissionsupload_video(): Upload video files with proper content-type handlingcreate_video_note(): Create video notes with proper metadata structureCode Quality
Usage Examples
Testing
✅ Functionality Verified:
Implementation Details
The implementation follows the same pattern as the existing
postcommand for image notes:get_video_upload_permit()andupload_video()methodscreate_video_note()with proper metadata structureThe
create_video_note()method properly constructs the JSON payload with:type: "video"video_infoimage_infoCompatibility
Ready for Merge
This implementation is production-ready and provides valuable video publishing capabilities to the xiaohongshu-cli tool.