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

# Stable Audio 1.0 ComfyUI 워크플로우 예시

> ComfyUI에서 Stability AI의 오픈소스 Stable Audio 1.0 모델을 사용해 텍스트를 오디오로 변환하는 방법 안내.

<Tip>
  <Tabs>
    <Tab title="휴대용 또는 자체 배포 사용자">
      ComfyUI가 최신 버전으로 업데이트되었는지 확인하세요.

      * [ComfyUI 다운로드](https://www.comfy.org/download)
      * [업데이트 가이드](/ko/installation/update_comfyui)

      이 가이드의 워크플로우는 [워크플로우 템플릿](/ko/interface/features/template)에서 확인할 수 있습니다.
      템플릿에서 찾을 수 없다면, 귀하의 ComfyUI가 오래된 버전일 수 있습니다. (데스크톱 버전의 업데이트는 다소 지연될 수 있습니다)

      워크플로우를 로드할 때 노드가 누락되는 경우, 가능한 원인:

      1. 최신 ComfyUI 버전(야간 빌드)을 사용하고 있지 않음
      2. 일부 노드가 시작 시 가져오기에 실패함
    </Tab>

    <Tab title="데스크톱 또는 클라우드 사용자">
      * 데스크톱 버전은 ComfyUI 안정판 기반으로, 새로운 데스크톱 안정판이 출시되면 자동으로 업데이트됩니다.
      * [클라우드](https://cloud.comfy.org)는 ComfyUI 안정판 출시 후 업데이트됩니다.

      따라서 이 문서에서 핵심 노드가 누락된 것을 발견했다면, 그 이유는 새로운 핵심 노드가 아직 최신 안정판에 공개되지 않았기 때문일 수 있습니다. 다음 안정판 출시를 기다려 주세요.
    </Tab>
  </Tabs>
</Tip>

**Stable Audio 1.0**은 Stability AI가 처음으로 공개한 오디오 생성 모델입니다. 이 모델은 텍스트 프롬프트를 입력받아 오디오 클립을 생성합니다. ComfyUI에서는 일반적인 텍스트-to-audio 파이프라인과 동일하게 작동하며, CLIP이 프롬프트를 인코딩하고 KSampler가 잠재적 데이터를 노이즈 제거하며, VAE가 이를 오디오로 디코드합니다.

**관련 링크**:

* [GitHub: Stability-AI/stable-audio-open-1.0](https://github.com/Stability-AI/stable-audio-open-1.0)

## 워크플로우

<Card title="워크플로우 다운로드" icon="download" href="https://github.com/Comfy-Org/workflow_templates/blob/main/templates/audio_stable_audio_example.json">
  JSON 파일 다운로드 또는 템플릿 라이브러리에서 "Stable Audio 1.0" 검색
</Card>

<Card title="Comfy Cloud에서 실행" icon="cloud" href="https://cloud.comfy.org/?template=audio_stable_audio_example&utm_source=docs&utm_medium=referral&utm_campaign=stable-audio-1">
  Comfy Cloud에서 열기
</Card>

![Stable Audio 1.0 워크플로우](https://raw.githubusercontent.com/Comfy-Org/workflow_templates/main/templates/audio_stable_audio_example-1.webp)

이 워크플로우는 **표준 ComfyUI 노드**만 사용하며, 커스텀 노드는 필요하지 않습니다. Stable Audio 1.0 체크포인트를 로드하고, CLIP 텍스트 인코더(t5-base)를 통해 프롬프트를 인코딩한 후 KSampler로 잠재적 오디오를 노이즈 제거하고, 모델의 VAE를 통해 오디오로 디코드합니다.

**사용 방법**:

1. **체크포인트 로드하기** — `CheckpointLoaderSimple` 노드는 `stable-audio-open-1.0.safetensors`를 사용합니다.
2. **프롬프트 작성하기** — `CLIPTextEncode` 노드에 설명을 입력하세요(예: "heaven church electronic dance music").
3. **지속시간 설정하기** — `EmptyLatentAudio` 노드의 길이 값을 조정하세요(기본값 47.6초).
4. **실행하기** (`Ctrl/Cmd + Enter`)를 클릭해 생성하세요. 오디오는 `ComfyUI/output/audio/`에 저장됩니다.

## 모델 다운로드

워크플로우를 로드할 때 ComfyUI는 누락된 모델에 대한 다운로드 링크를 표시합니다. 수동으로 설정하려면 아래 파일을 다운로드해 올바른 폴더에 배치하세요.

### 체크포인트

<Card title="stable-audio-open-1.0.safetensors" icon="download" href="https://huggingface.co/StabilityAI/stable-audio-open-1.0/resolve/main/stable-audio-open-1.0.safetensors">
  2.3GB. models/checkpoints/ 폴더에 배치하세요.
</Card>

체크포인트를 다음 경로에 배치하세요:

```
📂 ComfyUI/
├── 📂 models/
│   └── 📂 checkpoints/
│       └── stable-audio-open-1.0.safetensors
```

### 텍스트 인코더

<Card title="t5-base.safetensors" icon="download" href="https://huggingface.co/Comfy-Org/t5-base/resolve/main/t5-base.safetensors">
  프롬프트 조건부 설정을 위한 텍스트 인코더. models/text\_encoders/ 폴더에 배치하세요.
</Card>

텍스트 인코더를 다음 경로에 배치하세요:

```
📂 ComfyUI/
├── 📂 models/
│   └── 📂 text_encoders/
│       └── t5-base.safetensors
```

파일을 배치한 후 ComfyUI에서 **R**을 눌러 노드를 새로고침하고 최신 모델을 로드하세요.
