Sora 2 Pro Storyboard Generator
Generate AI video storyboards using Sora 2 Pro API. Creates 10-frame portrait storyboards with custom prompts, polls for completion, and delivers final video URLs.
Extend the current workflow by adding the Sora 2 Pro storyboard generation pipeline after the “Final Output” step. Required additions: 1. Insert an HTTP Request node named “Storyboard Request”: - Method: POST - URL: https://api.kie.ai/api/v1/jobs/createTask - Authentication: Bearer token (use existing credentials) - JSON body: { "model": "sora-2-pro-storyboard", "input": { "n_frames": "10", "aspect_ratio": "portrait", "image_urls": null, "shots": [ { "Scene": {{$json.scene_1}}, "duration": {{$json.duration}} }, { "Scene": {{$json.scene_2}}, "duration": {{$json.duration}} }, { "Scene": {{$json.scene_3}}, "duration": {{$json.duration}} }, { "Scene": {{$json.scene_4}}, "duration": {{$json.duration}} } ] } } 2. Insert a 10-second Wait node after Storyboard Request. 3. Insert a second HTTP Request node named “Check Render Status”: - Method: GET - URL: https://api.kie.ai/api/v1/jobs/recordInfo - Query: taskId = {{data.taskId}} from Storyboard Request 4. Add IF logic: - If state == "success": Extract video URL from resultJson (first URL). - If state == "fail": Extract error message and code. 5. Add a final Set node named “Final Sora Output” that returns: - video_url - scene_1, scene_2, scene_3, scene_4 - total_duration = 10 - aspect_ratio = "portrait" Do not modify any existing nodes. Only extend the flow with these additions.
English: Extend workflow with Sora 2 Pro storyboard generation pipeline. Add HTTP request to kie.ai API, poll for job completion, and return final video URL.
Loading workflow preview...