An open API service indexing awesome lists of open source software.

https://github.com/Yuan-ManX/ComfyUI-AudioX

Make AudioX avialbe in ComfyUI.
https://github.com/Yuan-ManX/ComfyUI-AudioX

comfyui comfyui-manager comfyui-nodes comfyui-workflow

Last synced: about 1 month ago
JSON representation

Make AudioX avialbe in ComfyUI.

Awesome Lists containing this project

README

        

# ComfyUI-AudioX

Make AudioX avialbe in ComfyUI.

[AudioX](https://github.com/ZeyueT/AudioX): Diffusion Transformer for Anything-to-Audio Generation.

## Installation

1. Make sure you have ComfyUI installed

2. Clone this repository into your ComfyUI's custom_nodes directory:
```
cd ComfyUI/custom_nodes
git clone https://github.com/Yuan-ManX/ComfyUI-AudioX.git
```

3. Install dependencies:
```
cd ComfyUI-AudioX
pip install -r requirements.txt
conda install -c conda-forge ffmpeg libsndfile
```

## Model

### Pretrained Checkpoints

Download the pretrained model from 🤗 [AudioX on Hugging Face](https://huggingface.co/HKUSTAudio/AudioX):

```bash
mkdir -p model
wget https://huggingface.co/HKUSTAudio/AudioX/resolve/main/model.ckpt -O model/model.ckpt
wget https://huggingface.co/HKUSTAudio/AudioX/resolve/main/config.json -O model/config.json
```