├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── __init__.py ├── assets ├── 1.png ├── 2.png └── 3.png ├── func.py ├── js └── Text2Audio.js ├── nodes ├── __init__.py └── text2Audio.py ├── nodes_map.py ├── pyproject.toml └── requirements.txt /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoonHugo/ComfyUI-StableAudioOpen/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /__pycache__ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoonHugo/ComfyUI-StableAudioOpen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoonHugo/ComfyUI-StableAudioOpen/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoonHugo/ComfyUI-StableAudioOpen/HEAD/README_EN.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoonHugo/ComfyUI-StableAudioOpen/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoonHugo/ComfyUI-StableAudioOpen/HEAD/assets/1.png -------------------------------------------------------------------------------- /assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoonHugo/ComfyUI-StableAudioOpen/HEAD/assets/2.png -------------------------------------------------------------------------------- /assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoonHugo/ComfyUI-StableAudioOpen/HEAD/assets/3.png -------------------------------------------------------------------------------- /func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoonHugo/ComfyUI-StableAudioOpen/HEAD/func.py -------------------------------------------------------------------------------- /js/Text2Audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoonHugo/ComfyUI-StableAudioOpen/HEAD/js/Text2Audio.js -------------------------------------------------------------------------------- /nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/text2Audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoonHugo/ComfyUI-StableAudioOpen/HEAD/nodes/text2Audio.py -------------------------------------------------------------------------------- /nodes_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoonHugo/ComfyUI-StableAudioOpen/HEAD/nodes_map.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MoonHugo/ComfyUI-StableAudioOpen/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | stable-audio-tools --------------------------------------------------------------------------------