- Preview thumbnails for cards and listing pages (
thumb_ar) - Resizing and aspect-ratio conversion for a specific player or platform (
w_,h_,ar_) - Trimming a long video down to a short clip (
so_,eo_,d_) - Converting a segment into a GIF for silent previews (
f_gif) - Correcting orientation with rotation and mirroring (
r_,flip_h,flip_v)
Video transforms are processed asynchronously. The first request for a new transform triggers a render and returns a JSON status; once the render completes, the same URL serves the output from cache.
thumb_ar returns a WebP image, f_gif returns a GIF, and every other transform returns video.What does a video URL look like?
Every delivery URL follows the same anatomy: domain, workspace ID, transforms, video path.assets.autorender.io— the Autorender delivery CDN.LOKVTtKVGb— your workspace ID, which prefixes every delivery URL.w_500,ar_1:1— comma-separated transform tokens.doc/skateboarding.mp4— the path to your source video.
How does async processing work?
The first request for a new transform returns a JSON status instead of the file:{"status":"triggered"}— the request is received and queued.{"status":"processing"}— the render is running.- Once the render completes, the same URL serves the transformed file directly.
Transform tokens
The
w_, h_, ar_, bg_, r_, and flip_ tokens behave the same for images. See the shared image pages for resize and aspect ratio, rotate, and flip.
Next steps
Thumbnail
Generate a WebP preview image from any video.
Resize & aspect ratio
Set exact dimensions or force a ratio for any player.
Trim
Clip a segment by start and end offset or duration.
Convert to GIF
Turn a video segment into a lightweight GIF.