Permalink to SVS 样式表SVS 样式表

SVS(.svs)文件使用类 CSS 语法定义可复用的类型化配置值。它们用于配置影片外观、字幕外观、Media 呈现与运动、文本样式、生成设置和字体选择。SVS 中的值称为 Recipe——它们是不可变的类型化记录,由消费组件进行验证和解释。

Permalink to 基本语法基本语法

svs
<?svml using="@hypit/svs@1"?>

<sheet version="1" id="studio">
  film.vertical {
    background: #09090B;
  }

  /* Comments use CSS-style block syntax. */
  caption.primary {
    fill: #FFFFFF;
    size: 58;
  }
</sheet>
  • 处理指令 <?svml using="@hypit/svs@1"?> 用于选择 SVS 解析器。
  • <sheet> 元素包裹所有声明。id 属性成为顶层命名空间。
  • 每个块的格式为 namespace.name { ... },属性以 ; 结尾的键值对形式书写。
  • 注释使用 /* ... */

Permalink to 导入与引用导入与引用

.svml 源文件中通过命名空间前缀导入 SVS 文件:

svml
<import as="recipes" source="./recipes.svs"/>

然后通过 {recipes.film.vertical}{recipes.caption.primary} 等方式引用各个 Recipe。前缀来自 as= 属性;路径来自样式表中的 namespace.name

Permalink to filmFilm

Film 外观只拥有画布清除颜色。画布尺寸是显式的 space:Canvas 图值,帧率来自 ProgramSpace。

svs
film.vertical {
  background: #09090B;
}
属性描述
background画布清除颜色(十六进制)

通过 film:Filmappearance 属性引用:

svml
<space:Canvas id="vertical" width="1080" height="1920"/>
<film:Film id="main" canvas={vertical} semantic={speech.semantic} appearance={recipes.film.vertical}>

Permalink to caption-fineCaption Fine

第一种官方 Caption 样式族把规划要求和渲染参数放在同一个 Recipe 中。

svs
caption.dialogue {
  stack-order: 70;
  x: 0.08;
  y: 0.76;
  width: 0.84;
  size: 58;
  line-height: 0.96;
  align: center;
  fill: #FFFFFF;
  background: #09090BCC;
  padding: 16 24;
  radius: 18;
}
属性描述
stack-order所有 Track 之间的 Z 轴层叠顺序(值越大越靠前)
xy位置,以画布比例表示(0–1)
width宽度,以画布比例表示
size字体大小(像素)
line-height行高倍数
align文本对齐方式:leftcenterright
fill文本颜色(十六进制,支持透明度)
background容器背景颜色(十六进制,支持透明度,如 #09090BCC
padding容器内边距(像素)(单个值或 垂直 水平
radius容器圆角半径(像素)

若要可复现渲染,应在 .svml 源码中显式选择已安装的精确字体,并把该 Record 传给 Fine Style。字体家族、字重和字形只在这条精确字体边上声明一次:

svml
<fonts:Stack id="caption-font" family="inter" weight="600" style="normal"/>
<caption-fine:Style id="primary-caption" recipe={recipes.caption.dialogue}
  font={caption-font}/>

Permalink to 按角色设置字幕样式按角色设置字幕样式

为不同说话者定义多个字幕 Recipe:

svs
caption.alice {
  stack-order: 70;
  x: 0.08; y: 0.76; width: 0.84;
  size: 58;
  line-height: 0.96;
  align: center;
  fill: #73FBD3;
  background: #09090BCC;
  padding: 16 24; radius: 18;
}

caption.bob {
  stack-order: 70;
  x: 0.08; y: 0.76; width: 0.84;
  size: 58;
  line-height: 0.96;
  align: center;
  fill: #FFD166;
  background: #09090BCC;
  padding: 16 24; radius: 18;
}

然后通过 caption:Program 进行分配:

svml
<fonts:Stack id="caption-font" family="inter" weight="600" style="normal"/>
<caption-fine:Style id="default-caption" recipe={recipes.caption.dialogue} font={caption-font}/>
<caption-fine:Style id="alice-caption" recipe={recipes.caption.alice} font={caption-font}/>
<caption-fine:Style id="bob-caption" recipe={recipes.caption.bob} font={caption-font}/>
<caption:Program id="caption-program" document={story.caption} default={default-caption}>
  <caption:Use role="ALICE" style={alice-caption}/>
  <caption:Use role="BOB" style={bob-caption}/>
</caption:Program>

Permalink to media-trackMedia Track

Media 将空间位置、框呈现与生命周期运动分开。SpatialFrame 负责位置和尺寸;外观 Recipe 负责素材适配与框材质;可选的 motion Recipe 负责入场、持续和退场。

svs
media.product {
  stack-order: 40;
  fit: contain;
  playback: hold-start;
  frame-paint: #111116;
  clip: rounded;
  radius: 28;
  padding: "0";
  border-width: 1;
  border-style: solid;
  border-color: #FFFFFF20;
  shadows: 0 10 24 0 #00000066;
}

motion.product {
  enter: slide;
  enter-frames: 8;
  enter-direction: up;
  enter-easing: ease-out;
  exit: fade;
  exit-frames: 6;
  exit-easing: ease-in;
}
属性描述
stack-orderZ 轴层叠顺序
fitcontaincoverfit-widthfit-heightnativescale-downstretch
frame-xframe-y放置 Frame 内的对齐点
content-xcontent-y素材内部独立选择的焦点
playbackonce-starthold-startloop-endstretch 等有时长素材占用方式
frame-paint采样素材背后的纯色或渐变 Paint
clipradiuspadding框裁切与内缩
border-*shadows框自有的边框与有序阴影
enterexit生命周期算子;帧数、缓动和方向使用独立属性
sustain零个或多个确定性局部运动,例如 float 12 2 up

位置始终是一条显式图边:

svml
<space:Frame id="product-frame" within={vertical}
  left="8%" top="20%" right="92%" bottom="68%"/>
<media-track:Item media={product-media.media}
  during={story.selection.demo} frame={product-frame}
  appearance={recipes.media.product} motion={recipes.motion.product}/>

Permalink to 文本文本

文本叠加层外观——排版与 Paint。位置由另一条 SpatialFrame 图边提供。

svs
text.title {
  stack-order: 90;
  weight: 900;
  size: 64;
  align: center;
  fill: #FFFFFF;
  tracking: -1;
}
属性描述
stack-orderZ 轴层叠顺序
weight字体粗细
size字体大小(像素)
align文本对齐方式
fill文本颜色
tracking字间距调整

先与精确字体字节一起编译为 text:Style,再由具体放置形式引用:

svml
<fonts:Stack id="title-font" family="inter" weight="900" style="normal"/>
<text:Style id="title-style" recipe={recipes.text.title} font={title-font}/>
<text:Area id="meaning" placement={title-frame} style={title-style} during="program">
  MEANING
</text:Area>

Permalink to speaker-text-templateSpeaker Text Template

这个 Recipe 选择纯数据 speaker-v1 Text Template 声明的 Prompt 轴。模型、分辨率、参考素材与时长仍是 seedance:ReferenceVideo 的显式输入,不藏在 Recipe 里。

svs
speaker.host {
  composition-stability: soft-locked;
  camera-motion: none;
  edit-rhythm: continuous-take;
  performance: natural-explainer;
  gesture: natural;
}
属性描述
composition-stability镜头/构图一致性:flexible-ugcsoft-lockedstrict-locked
camera-motion镜头运动:nonesubtle-punch-in-return
edit-rhythm剪辑风格:continuous-takepause-trim-jump-cuts
performance表演风格:natural-explainerhigh-energy-ugccalm-authorityreactive-playful
gesture手势强度:restrainedcompactnaturalexpressive
与 Kit 的 Template 一起由 text:Render 引用:
svml
<text:Render id="hook-prompt"
  template={speaker-kit.speaker-v1} recipe={recipes.speaker.host}>
  <text:Set name="dialogue" text={story.segment.hook.dialogue}/>
  <text:Set name="action" text={hook-action}/>
</text:Render>

Permalink to 通用-text-template-recipe通用 Text Template Recipe

无需领域包装器也能使用同一优先级。text:Render 可以读取任意 SVS Recipe,只投影模板明确声明的属性,并允许显式 text:Param 覆盖。这使 Seedance 的 B-roll、Podcast、Call、 Street Interview 与参考迁移 Kit 可以保持为纯数据,而不进入 Seedance 执行代码。

svs
broll.product-demo {
  material-mode: product-beauty;
  story-shape: process-demo;
  edit-language: insert-cutaway;
  camera-language: product-macro;
  motion-intensity: readable;
}

Street Interview、Podcast 与 Call 使用同一套 Recipe 机制,不需要手写固定 Prompt。例如:

svs
interview.street {
  framing: soft-handheld;
  pacing: compact;
  performance: natural-street;
  reaction: active;
  gesture: natural;
}

street-interview-v1 读取这五个轴,每段的镜头变化按作者顺序直接写在 action 中。podcast-v1call-v1 读取同名的 framingedit-languagepacingperformancereactiongesture 轴,但使用各自的有限值。允许值和默认值以所选 Kit 文件为准。

模型、分辨率、时长和参考媒体不是模板策略;它们继续存在于精确模型 Surface 与显式图边中。

Permalink to 精确字体声明精确字体声明

SVS 描述字体策略,但不选择或打开字体字节。常用开源字体由私有的预发布字体目录显式导入;只有作者图真正引用的字体会进入本次 Build:

svml
<import as="fonts" from="@hypit/fonts-open@1"/>

<fonts:Stack id="caption-fonts" family="inter" weight="600" style="normal" emoji="color">
  <fonts:Fallback family="noto-sans-sc" weight="600" style="normal"/>
</fonts:Stack>
属性描述
family字体包有限目录中的字体族
weight精确选择的字体粗细
stylenormal 或该字体族支持的 italic
emojiStack 可选的 color(COLRv1)或 mono 兜底

目录现有 109 个开源字体族,覆盖手写、书法、展示、无衬线、衬线、等宽、CJK、其他文字系统与 Emoji。Fontsource 依赖固定为 5.3.0,Chromium 兼容的 COLRv1 Emoji 包另行锁定版本;编译器把已安装字节哈希成内容寻址的字体值,Build 过程不会下载字体,Runtime 也不猜字体:

svml
<caption-fine:Style id="dialogue" recipe={recipes.caption.dialogue}
  font={caption-fonts}/>

fonts:Stack 产出通用 FontStackRef,主字体与 Fallback 都保留自己的真实元数据; Caption Recipe 不再重复家族、字重或字形。CJK 与 Emoji 即使由多个 Unicode-range 文件组成,在作者图中仍是一条逻辑边。终端 Text 与 Fine Caption 都拒绝省略字体栈;Visual IR 不接受机器字体兜底。对于同时具有文本与 Emoji 两种呈现的符号,作者应写真实的 Unicode Emoji 序列(例如包含 VS16 的 ☎️);任何包都不会为了强制彩色而改写显示稿。

品牌字体与自定义字体仍是显式作者资产,不会被塞进共享目录:

svml
<import as="media" from="@hypit/media@1"/>
<media:Font id="brand" src="./assets/Brand-Semibold.woff2"
  weight="600" style="normal"/>

Permalink to 综合示例综合示例

一个完整的 recipes.svs 文件,用于四段式说话人头像项目:

svs
<?svml using="@hypit/svs@1"?>

<sheet version="1" id="studio">

  speaker.host {
    composition-stability: soft-locked;
    camera-motion: none;
    edit-rhythm: continuous-take;
    performance: natural-explainer;
    gesture: natural;
  }

  film.vertical {
    background: #09090B;
  }

  caption.primary {
    stack-order: 70;
    x: 0.08;
    y: 0.74;
    width: 0.84;
    size: 44;
    line-height: 1;
    align: center;
    fill: #FFFFFF;
    background: #09090BCC;
    padding: 14 20;
    radius: 16;
  }
</sheet>

该文件在 .svml 源文件中导入一次,其值在整个文件中被引用:

svml
<import as="recipes" source="./recipes.svs"/>

<text:Render id="hook-prompt" template={speaker-kit.speaker-v1}
  recipe={recipes.speaker.host}>...</text:Render>

<caption-fine:Style id="primary-caption" recipe={recipes.caption.primary} font={caption-font}/>

<space:Canvas id="vertical" width="720" height="1280"/>
<film:Film id="main" canvas={vertical} semantic={speech.semantic} appearance={recipes.film.vertical}>