Video Generation

AI Dev Kit provides video generation capabilities from text or images using .GENVideo().

Available Methods

1. Text to Video

Generate videos from text descriptions:

VideoClip video = await "Ocean waves at sunset"
    .GENVideo()
    .ExecuteAsync();

2. Image to Video

Animate existing images:

Texture2D image = Resources.Load<Texture2D>("Frame");
VideoClip video = await image
    .GENVideo()
    .ExecuteAsync();

Basic Examples

Example 1: Text to Video

Example 2: Image Animation

Configuration

Duration

Resolution

Frame Rate

Provider Support

Video generation is available through select providers:

  • OpenAI: Limited support

  • Google: Experimental features

  • Specialized providers: Coming soon

Note: Video generation is an emerging feature. Check provider documentation for current capabilities.

Next Steps

Last updated