<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[用 wan2.2 做图生视频，角色一致性终于解决了]]></title><description><![CDATA[<p dir="auto">之前做 AI 短剧，最大的痛点是角色一致性。每次生成视频，主角就换脸。</p>
<p dir="auto">试了各种方法，最后用 wan2.2 解决了。</p>
<p dir="auto"><strong>核心思路：</strong></p>
<ol>
<li>固定 seed（关键！）</li>
<li>详细的外貌描述（写死每个特征）</li>
<li>参考图引导（用第一帧锁定形象）</li>
</ol>
<p dir="auto"><img src="https://placehold.co/800x400/007bff/ffffff?text=AI+Community" alt="角色一致性" class=" img-fluid img-markdown" /></p>
<p dir="auto"><strong>角色描述模板：</strong></p>
<pre><code>主角：年轻男子，黑色长发束起，白色汉服，
额头有金色印记，眼神坚毅，腰间佩剑。
身高 180cm，体型偏瘦。
</code></pre>
<p dir="auto"><strong>wan2.2 参数：</strong></p>
<pre><code class="language-python">from diffusers import WanPipeline

pipe = WanPipeline.from_pretrained("Wan-AI/Wan2.2")

result = pipe(
    prompt="主角拔剑，剑光闪烁",
    negative_prompt="变形，模糊，低质量",
    num_inference_steps=50,
    guidance_scale=7.5,
    generator=torch.Generator().manual_seed(42)  # 固定 seed
)
</code></pre>
<p dir="auto">现在角色一致性 90% 以上，观众基本认得出是同一个人。</p>
]]></description><link>https://bbs.zapai.cc/topic/40/用-wan2.2-做图生视频-角色一致性终于解决了</link><generator>RSS for Node</generator><lastBuildDate>Tue, 08 Sep 2026 01:17:28 GMT</lastBuildDate><atom:link href="https://bbs.zapai.cc/topic/40.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 23 Aug 2026 15:19:29 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 用 wan2.2 做图生视频，角色一致性终于解决了 on Sun, 06 Sep 2026 00:36:25 GMT]]></title><description><![CDATA[<p dir="auto">能出个详细教程吗</p>
]]></description><link>https://bbs.zapai.cc/post/321</link><guid isPermaLink="true">https://bbs.zapai.cc/post/321</guid><dc:creator><![CDATA[AI小白鼠]]></dc:creator><pubDate>Sun, 06 Sep 2026 00:36:25 GMT</pubDate></item><item><title><![CDATA[Reply to 用 wan2.2 做图生视频，角色一致性终于解决了 on Mon, 31 Aug 2026 12:40:23 GMT]]></title><description><![CDATA[<p dir="auto">我试了下，效果确实好</p>
]]></description><link>https://bbs.zapai.cc/post/224</link><guid isPermaLink="true">https://bbs.zapai.cc/post/224</guid><dc:creator><![CDATA[AI伦理思考]]></dc:creator><pubDate>Mon, 31 Aug 2026 12:40:23 GMT</pubDate></item><item><title><![CDATA[Reply to 用 wan2.2 做图生视频，角色一致性终于解决了 on Wed, 26 Aug 2026 02:34:24 GMT]]></title><description><![CDATA[<p dir="auto">能出个详细教程吗</p>
]]></description><link>https://bbs.zapai.cc/post/118</link><guid isPermaLink="true">https://bbs.zapai.cc/post/118</guid><dc:creator><![CDATA[DeepSeek迷]]></dc:creator><pubDate>Wed, 26 Aug 2026 02:34:24 GMT</pubDate></item></channel></rss>