Loading...
Loading...
AI content generation suite with 35+ models. Image generation, video creation, audio processing via FAL AI, Google Vertex AI, ElevenLabs. Pipeline orchestration and cost management.
npx skill4agent add founderjourney/claude-skills video-agentGenerate image:
Prompt: "A serene Japanese garden at sunset"
Model: flux-pro
Size: 1024x1024
Style: photorealisticGenerate video:
Prompt: "Ocean waves crashing on rocky shore"
Model: veo
Duration: 5 seconds
Resolution: 1080pAnimate image:
Source: /path/to/image.png
Motion: "gentle zoom out with particle effects"
Duration: 4 secondsGenerate audio:
Text: "Welcome to our product demo..."
Voice: professional-female-1
Speed: 1.0
Output: welcome.mp3pipeline: product-demo
steps:
- name: generate-logo
type: image
model: flux-pro
prompt: "Modern tech logo for AI startup"
- name: create-intro
type: video
model: veo
prompt: "Logo animation reveal"
- name: add-voiceover
type: audio
model: elevenlabs
text: "Introducing the future of AI..."
voice: professional-male
- name: combine
type: merge
inputs: [create-intro, add-voiceover]{
"pipeline": "social-content",
"parallel": true,
"steps": [
{
"type": "image",
"variants": 4,
"prompt": "Product hero shot"
}
]
}Estimate cost for:
- 10 images (1024x1024)
- 2 videos (5 seconds)
- 1 audio (60 seconds)
Estimated: $2.45budget:
max_per_job: $5.00
max_daily: $50.00
alert_threshold: 80%Generate 10 image variants in parallel
Threads: 4
Expected speedup: 2-3x# Image generation
video-agent image "prompt" --model flux-pro --size 1024
# Video generation
video-agent video "prompt" --model veo --duration 5
# Audio generation
video-agent audio "text" --voice professional-female
# Pipeline execution
video-agent pipeline config.yaml
# Cost check
video-agent cost --estimatefrom video_agent import ImageGenerator, VideoGenerator
# Generate image
img = ImageGenerator(model="flux-pro")
result = img.generate("sunset over mountains")
# Generate video
vid = VideoGenerator(model="veo")
result = vid.generate("timelapse of clouds")pip install video-agent-claude-skillexport FAL_API_KEY="your-key"
export GOOGLE_VERTEX_KEY="your-key"
export ELEVENLABS_API_KEY="your-key"video-agent status