voice-video-producer

Convert approved manga visual packages into narrated motion-comic videos with speech, subtitles, and ffmpeg assembly.

2|1|Updated Mar 7, 2026
One-click install
npx skills add https://github.com/AutoByteus/autobyteus-agents --skill voice-video-producer-autobyteus
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: voice-video-producer
Source: https://github.com/AutoByteus/autobyteus-agents/tree/main/agent-teams/manga-video-studio-team/agents/voice-video-producer/skills/voice-video-producer
Command: npx skills add https://github.com/AutoByteus/autobyteus-agents --skill voice-video-producer-autobyteus

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning a finished manga chapter package into a watchable narrated video requires coordinating voice casting, speech generation, subtitle timing, and video assembly, which is error-prone and hard to keep consistent across chapters. ## Core Features & Use Cases - Voice Package Planning: Maps storyboard audio beats into per-clip voice assignments, scripts, emotions, and performance cues while preserving voice continuity from the character registry. - Serial Speech Generation with Logging: Generates one speech clip per audio beat with a strict serial queue and 60-second cooldown between calls, logging every call for reuse in future chapters. - Subtitle and Video Assembly: Builds SRT subtitles aligned to actual clip durations, assembles the final MP4 with ffmpeg, and runs post-export QA by sampling frames against the render timing map. - Use Case: After a manga chapter's storyboard and generated frame assets are approved, use this Skill to produce the narrated motion-comic video, subtitles, and a carry-forward handoff for the next chapter. ## Quick Start Use the voice-video-producer skill to turn the approved chapter package into a narrated motion-comic video with subtitles and a final MP4 export.

Frequently Asked Questions about voice-video-producer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I turn a manga storyboard into a narrated video?▼

Map the storyboard's audio beats into a voice package with one clip per beat, generate speech serially with a speech tool, build SRT subtitles from actual clip durations, then assemble frames and audio with ffmpeg into a final MP4.

How do I generate speech for multiple characters in one video?▼

Assign a stable voice per character from the character registry and default to one speaker per clip. Use multi-speaker generation only when one visible beat needs a short two-person exchange, with a hard limit of two mapped speakers per call.

Can I run speech generation calls in parallel to speed up production?▼

No. Speech generation must be serial-only: one call, wait for the result, log it, then run sleep 60 before the next call. This cooldown applies after retries, failures, and approved clips alike.

How do I keep subtitles synced with audio in a motion comic?▼

Build the SRT file from the final clip order and actual recorded durations, keeping wording faithful to the spoken lines. Create a render timing map linking each frame asset to its audio beats and subtitle windows before export.

What should I do when generated images do not fit the video aspect ratio?▼

Do not pad or crop casually to hide mismatched assets. Route pages, panel grids, or wrong-aspect frames back to the manga illustrator unless the user explicitly approved a separate export variant with a full crop plan.

Why is post-export QA required after ffmpeg assembly?▼

A successful export command does not guarantee correct output. Sample validation frames from the final MP4, compare them against the render timing map, and check subtitle progression and layout so desynced or malformed exports are rebuilt.