> ## Documentation Index
> Fetch the complete documentation index at: https://dripart-docs-recommend-assets-api.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# VAEDecodeAudioTiled - ComfyUI Built-in Node Documentation

> Complete documentation for the VAEDecodeAudioTiled node in ComfyUI. Learn its inputs, outputs, parameters and usage.

> 本文档由 AI 生成。如果您发现任何错误或有改进建议，欢迎贡献！ [在 GitHub 上编辑](https://github.com/Comfy-Org/embedded-docs/blob/main/comfyui_embedded_docs/docs/VAEDecodeAudioTiled/zh.md)

此节点使用变分自编码器（VAE）将压缩的音频表示（潜在样本）转换回音频波形。它通过处理较小且重叠的片段（图块）来管理内存使用，使其适合处理较长的音频序列。

## 输入参数

| 参数          | 数据类型   | 必填 | 取值范围      | 描述                                     |
| ----------- | ------ | -- | --------- | -------------------------------------- |
| `samples`   | LATENT | 是  | 不适用       | 待解码音频的压缩潜在表示。                          |
| `vae`       | VAE    | 是  | 不适用       | 用于执行解码的变分自编码器模型。                       |
| `tile_size` | INT    | 否  | 32 至 8192 | 每个处理图块的大小。音频按此长度的片段进行解码以节省内存（默认值：512）。 |
| `overlap`   | INT    | 否  | 0 至 1024  | 相邻图块重叠的样本数。这有助于减少图块边界处的伪影（默认值：64）。     |

## 输出结果

| 输出名称     | 数据类型  | 描述        |
| -------- | ----- | --------- |
| `output` | AUDIO | 解码后的音频波形。 |
