ai-video
AI video generation and editing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
AI video generation and editing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | ai-video |
| description | AI video generation and editing. |
| metadata | {"tags":["aigc"],"related_skills":["ai-image","qwen-tts"]} |
This skill is for video generation and editing. Every section is optional; use only what you need.
Run uv run ${SKILL_DIR}/scripts/generate_video.py for Video Generation.
For full usage, run uv run ${SKILL_DIR}/scripts/generate_video.py --help.
Generate text-to-video:
--prompt "A cyberpunk city at night with neon lights" --output "output.mp4"
Generate image-to-video (animate an image):
--prompt "Make the character speak and smile" --image "/path/to/image.png" --output "output.mp4"
When making talking videos, it's useful to loop the video and merge the audio with this command:
ffmpeg -y -stream_loop -1 -i "<video_path>" -i "<speech_audio_path>" -c:v libx264 -crf 28 -preset fast -c:a aac -map 0:v:0 -map 1:a:0 -shortest -fflags +genpts "<output_video_path>"