> ## Documentation Index
> Fetch the complete documentation index at: https://docs.domoai.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Video to Video Styles

> Available models for video-to-video style transformation

export const TemplateCard = ({template, imageUrl, videoUrl}) => {
  return <div className="card block font-normal group relative my-2 ring-2 ring-transparent rounded-2xl bg-white dark:bg-background-dark border border-gray-950/10 dark:border-white/10 overflow-hidden w-full" onClick={() => console.log(template)}>
        <video autoPlay muted loop playsInline className="w-full aspect-square" poster={imageUrl} src={videoUrl} />

        <div className="font-bold flex flex-col p-2 text-center">
            {template}
        </div>
    </div>;
};

## Overview

Video to Video models apply AI style transformations to your existing videos. Use them with the [Video to Video API](/api-reference/ai-video/video-to-video) to convert any video into a new anime style.

## How to Use Models

Specify the `model` parameter in your video-to-video API request:

```json theme={null}
{
  "model": "anime-v5.5",
  "prompt": "vibrant colors, high detail",
  "video": {
    "domoai_uri": "<YOUR-DOMOAI-URI>"
  },
  "seconds": 5
}
```

Each model applies a distinct visual style to your input video while preserving the original motion and composition.

## Available Models

Explore the model gallery below. Each card shows a preview of the style output.

### Anime

<Columns cols={4}>
  <TemplateCard template="anime-v5.5" imageUrl="https://img-c.domoai.app/cdn-cgi/imagedelivery/_x5qGVgvt8-cROikD3CkFw/bcca0de6-3037-4838-f624-25ef009ddb00/public" videoUrl="https://customer-v3pak2qtdtieudrb.cloudflarestream.com/4d07365c784a68ce8b1c897d25393de0/downloads/default.mp4" />

  <TemplateCard template="anime-v1.2" imageUrl="https://img-c.domoai.app/cdn-cgi/imagedelivery/_x5qGVgvt8-cROikD3CkFw/331ff29c-ff0d-403c-bf79-f8a3b8ec7100/public" videoUrl="https://customer-v3pak2qtdtieudrb.cloudflarestream.com/86564a5bbab61c6fdc104521799c2862/downloads/default.mp4" />

  <TemplateCard template="anime-v10" imageUrl="https://img-c.domoai.app/cdn-cgi/imagedelivery/_x5qGVgvt8-cROikD3CkFw/65945784-2ab4-4663-2518-929b5452ab00/public" videoUrl="https://customer-v3pak2qtdtieudrb.cloudflarestream.com/9ac45d05b7423af55993eee7b52852c3/downloads/default.mp4" />

  <TemplateCard template="anime-v9.1" imageUrl="https://img-c.domoai.app/cdn-cgi/imagedelivery/_x5qGVgvt8-cROikD3CkFw/34ab1df4-b419-46e4-4b2c-483a877fd800/public" videoUrl="https://customer-v3pak2qtdtieudrb.cloudflarestream.com/900599ca2a62a0bc3d8d3944419e0f6f/downloads/default.mp4" />
</Columns>

### Illustration

<Columns cols={4}>
  <TemplateCard template="illustration-v9.1" imageUrl="https://img-c.domoai.app/cdn-cgi/imagedelivery/_x5qGVgvt8-cROikD3CkFw/d9de2ec3-b848-4f1a-9c17-6319d2490c00/public" videoUrl="https://customer-v3pak2qtdtieudrb.cloudflarestream.com/98695072904fed2c3a7fb0daaf578aa4/downloads/default.mp4" />

  <TemplateCard template="illustration-v20" imageUrl="https://img-c.domoai.app/cdn-cgi/imagedelivery/_x5qGVgvt8-cROikD3CkFw/1815eeb3-f5e5-440c-d492-d1d6d36aa600/public" videoUrl="https://customer-v3pak2qtdtieudrb.cloudflarestream.com/5a02e4e40dc5a621e69eacb2016b09cc/downloads/default.mp4" />

  <TemplateCard template="illustration-v8.1" imageUrl="https://img-c.domoai.app/cdn-cgi/imagedelivery/_x5qGVgvt8-cROikD3CkFw/536328d6-3c18-4d02-91d5-fedcb6e13200/public" videoUrl="https://customer-v3pak2qtdtieudrb.cloudflarestream.com/e7483c98dafae7f7817bc423cc32a440/downloads/default.mp4" />

  <TemplateCard template="illustration-v19" imageUrl="https://img-c.domoai.app/cdn-cgi/imagedelivery/_x5qGVgvt8-cROikD3CkFw/e46a2326-6cb9-4003-fe0f-30fbd13aa400/public" videoUrl="https://customer-v3pak2qtdtieudrb.cloudflarestream.com/7615c2a83589d7efe9c34637aaf6f6e9/downloads/default.mp4" />
</Columns>
