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.
- Host: GitHub
- URL: https://github.com/Yuan-ManX/ComfyUI-AudioX
- Owner: Yuan-ManX
- License: mit
- Created: 2025-05-07T03:40:23.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-05-07T03:56:49.000Z (about 1 month ago)
- Last Synced: 2025-05-07T04:31:18.330Z (about 1 month ago)
- Topics: comfyui, comfyui-manager, comfyui-nodes, comfyui-workflow
- Language: Python
- Homepage:
- Size: 0 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-comfyui - **ComfyUI-AudioX**
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
```