ai-video
AI video generation and editing.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
AI video generation and editing.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
| 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>"