Skip to main content

image-series-to-video

图片系列转视频工作流:将带 manifest 的 PNG 图片系列转成带讲解、字幕和验收的 MP4 视频。Workflow skill for converting a manifest-backed image series into a narrated video; use when generated PNGs or an image manifest should become an MP4, long-image explanation video, chapter video, narrated walkthrough, or social video.

설치로 이동

소스 정보

저장소
ai-workspace-lab/xworkspace-core-skills
최근 소스 활동
2026년 6월 1일 23:12
감지된 SKILL.md 언어
영어
스타
7
포크
0

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
image-series-to-video
description
图片系列转视频工作流:将带 manifest 的 PNG 图片系列转成带讲解、字幕和验收的 MP4 视频。Workflow skill for converting a manifest-backed image series into a narrated video; use when generated PNGs or an image manifest should become an MP4, long-image explanation video, chapter video, narrated walkthrough, or social video.
# Image Series To Video Workflow This workflow starts only after a real image series exists. It prevents the video stage from inventing fake screenshots, CSS cards, or placeholder images. ## Required Inputs The current artifact scope must contain: - `assets/images/*.png` - `assets/images/manifest.md` The manifest must describe one row per image with title, file, usage, scan mode, and focus guidance. ## Output Contract Final deliverables must stay inside the current task artifact scope: - `video.config.json` - `index.html` - `assets/audio/*.mp3` - `assets/audio/bgm.wav` - `renders/*.mp4` - `ffprobe.json` - `DELIVERY.md` ## Phase 1: Input Gate Validate before building video: ```bash find assets/images -maxdepth 1 -type f -name '*.png' | sort test -f assets/images/manifest.md ``` Reject the task if images are missing, empty, non-PNG, or not referenced by manifest. ## Phase 2: Video Plan Create or update `video.config.json` from the manifest: - one scene per image or chapter - title and caption per scene - scan mode and safe focus from manifest - voiceover text - inspect timestamps - output file name Do not hand-write fixed scene arrays unrelated to the manifest. ## Phase 3: Build Use the repository video runner when available. Otherwise create the minimal equivalent pipeline: - generate `index.html` - generate voiceover audio - run visual acceptance snapshots - render MP4 - run ffprobe ## Phase 4: Acceptance Only report completion if: - `renders/*.mp4` exists and is non-empty. - `ffprobe.json` shows video and audio streams. - duration is plausible for the number of scenes. - sampled frames show real source images, visible captions, and no obvious overlap. If any step fails, report the failing phase and keep partial artifacts for diagnosis.
GitHub에서 보기