VercelVercel
Menu

Video Editing

Last updated February 19, 2026

Edit existing videos using text prompts. Describe the changes you want and the model modifies the video accordingly.

Grok Imagine Video (by xAI) can edit existing videos using text prompts. Provide a source video URL and describe the desired edits.

ModelMax Input DurationOutput Resolution
xai/grok-imagine-video8.7 secondsUp to 720p

Video editing output matches the input video's aspect ratio and resolution, capped at 720p. A 1080p input will be downsized to 720p. The duration, aspectRatio, and resolution parameters are not supported for editing.

ParameterTypeRequiredDescription
promptstringYesDescription of the edits to apply to the video
providerOptions.xai.videoUrlstringYesURL of the source video to edit
providerOptions.xai.pollIntervalMsnumberNoHow often to check task status. Defaults to 5000
providerOptions.xai.pollTimeoutMsnumberNoMaximum wait time. Defaults to 600000 (10 minutes)
video-editing.ts
import { experimental_generateVideo as generateVideo } from 'ai';
import fs from 'node:fs';
 
const result = await generateVideo({
  model: 'xai/grok-imagine-video',
  prompt: 'Give the person sunglasses and a hat',
  providerOptions: {
    xai: {
      videoUrl: 'https://example.com/source-video.mp4',
      pollTimeoutMs: 600000,
    },
  },
});
 
fs.writeFileSync('output.mp4', result.videos[0].uint8Array);

Video generation can take several minutes. Set pollTimeoutMs to at least 10 minutes (600000ms) for reliable operation. Generated video URLs are ephemeral and should be downloaded promptly.


Was this helpful?

supported.