?
mergeVideos
Merge one or more clips into a single video.
mindstudio.mergeVideos({ videoUrls }) → Result
Concatenates several clips into one video in the order given — the join step at the end of a multi-clip pipeline.
Parameters
videoUrls
string[]
RequiredURLs of the video clips to merge in order
transition
string
Optional xfade transition effect name
transitionDuration
number
Duration of the transition in seconds
intermediateAsset
boolean
When true, the asset is created but hidden from the user's gallery (tagged as intermediate)
Call from a method
import { mindstudio } from '@mindstudio-ai/agent'; const result = await mindstudio.mergeVideos({ videoUrls: /* ... */ });