ReferenceAsk
Remy Reference/agent/upscaleVideo
?

upscaleVideo

Upscale a video file
mindstudio.upscaleVideo({ videoUrl, targetResolution, engine }) Result

Increases a video's resolution, returning a higher-resolution file.

Parameters
videoUrl
string
RequiredURL of the source video to upscale
targetResolution
string
RequiredTarget output resolution for the upscaled video
720p1080p2K4K
engine
string
RequiredUpscaling engine to use. Higher tiers produce better quality at higher cost.
standardproultimateflashvsrseedanceseedvr2runwayml/upscale-v1
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.upscaleVideo({
  videoUrl: /* ... */,
  targetResolution: /* ... */,
  engine: /* ... */
});