返回 AiToEarn
1 ---
2 name: transferring-video-styles
3 description: Converts live-action videos into artistic styles like comic, anime, manga, 3D cartoon. Use when user wants to transform video style, create anime version, apply artistic effects, convert to cartoon style, make comic video, create manga style video, stylize video. 视频风格转换、动漫风格、漫画风格、卡通风格、视频二次元化、视频风格化、AI风格转换、视频转动漫、视频转漫画。
4 ---
5
6 # Video Style Transfer
7
8 Converts live-action videos into artistic styles (comic, anime, 3D cartoon) using AI-powered style transfer.
9
10 ## When to Use
11
12 Use this skill when:
13
14 - Converting videos to comic/manga style
15 - Creating anime-style versions of videos
16 - Applying 3D cartoon effects to videos
17 - Transforming real-world footage into artistic styles
18
19 ## Available Styles
20
21 | Style | Description | Best For |
22 | ------------------------- | -------------------------- | ------------------------------- |
23 | 漫画风 (Comic) | Bold outlines, flat colors | Action scenes, dramatic content |
24 | 3D卡通风格 (3D Cartoon) | Smooth 3D rendering | Family content, cute subjects |
25 | 日漫风格 (Japanese Anime) | Anime aesthetics | Storytelling, character-focused |
26
27 ## Workflow
28
29 ### Step 1: Get Video Input
30
31 Obtain the video URL or VID from user. URLs will be auto-uploaded.
32
33 ### Step 2: Submit Style Transfer Task
34
35 Call `submitVideoStyleTransfer` with:
36
37 - Video source
38 - Target style
39 - Output resolution
40
41 ### Step 3: Poll for Results
42
43 1. First check: Wait **210 seconds** (3.5 minutes) after submission
44 2. Subsequent checks: Wait **30 seconds** between polls
45 3. Call `getVideoStyleTransferStatus` to check progress
46
47 ### Step 4: Timeout Handling
48
49 **Maximum wait time: 20 minutes**
50
51 If task exceeds 20 minutes:
52
53 - Report as timeout failure
54 - Suggest user try with shorter video or lower resolution
55
56 ### Step 5: Return Results
57
58 On completion, return the styled video URL and VID to user.
59
60 ## Examples
61
62 ### Example 1: Convert to Comic Style
63
64 ```
65 1. submitVideoStyleTransfer:
66 - videoInput: "https://example.com/video.mp4"
67 - style: "漫画风"
68 - resolution: "720p"
69 2. Wait 210 seconds
70 3. Poll getVideoStyleTransferStatus until completed
71 4. Return styled video URL
72 ```
73
74 ### Example 2: Create Japanese Anime Version
75
76 ```
77 1. submitVideoStyleTransfer:
78 - videoInput: "vid://xxxxx"
79 - style: "日漫风格"
80 - resolution: "1080p"
81 2. Wait 210 seconds
82 3. Poll getVideoStyleTransferStatus until completed
83 4. Return styled video URL
84 ```
85
86 ## Resolution Selection
87
88 | Resolution | Use Case | Processing Time |
89 | ---------- | ------------------------- | --------------- |
90 | 480p | Quick testing, previews | Fastest |
91 | 720p | Standard quality output | Normal |
92 | 1080p | High quality final output | Longest |
93
94 ## Important Notes
95
96 - Processing time: approximately **10 minutes per 1-minute** of video
97 - Maximum wait time is 20 minutes
98 - Style transfer works best with clear subjects and good lighting
99 - Use 480p for testing, upgrade to 720p/1080p for final output
100
100 lines MARKDOWN