├── .gitignore ├── README.md ├── __init__.py ├── ffmpy-0.3.2 ├── LICENSE ├── PKG-INFO ├── README.rst ├── build │ └── lib │ │ └── ffmpy.py ├── ffmpy.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt ├── ffmpy.py ├── setup.cfg └── setup.py ├── install.bat ├── musicgen_model.png ├── nodes.png ├── nodes ├── StableAudioNode.py ├── musicNode.py ├── stable_audio_tools │ ├── __init__.py │ ├── configs │ │ ├── dataset_configs │ │ │ ├── custom_metadata │ │ │ │ └── custom_md_example.py │ │ │ ├── local_training_example.json │ │ │ └── s3_wds_example.json │ │ └── model_configs │ │ │ ├── autoencoders │ │ │ ├── dac_2048_32_vae.json │ │ │ ├── encodec_musicgen_rvq.json │ │ │ ├── stable_audio_1_0_vae.json │ │ │ └── stable_audio_2_0_vae.json │ │ │ ├── dance_diffusion │ │ │ ├── dance_diffusion_base.json │ │ │ ├── dance_diffusion_base_16k.json │ │ │ ├── dance_diffusion_base_44k.json │ │ │ └── dance_diffusion_large.json │ │ │ └── txt2audio │ │ │ ├── stable_audio_1_0.json │ │ │ └── stable_audio_2_0.json │ ├── data │ │ ├── __init__.py │ │ ├── dataset.py │ │ └── utils.py │ ├── inference │ │ ├── __init__.py │ │ ├── generation.py │ │ ├── sampling.py │ │ └── utils.py │ ├── interface │ │ ├── __init__.py │ │ └── gradio.py │ ├── models │ │ ├── __init__.py │ │ ├── adp.py │ │ ├── autoencoders.py │ │ ├── blocks.py │ │ ├── bottleneck.py │ │ ├── codebook_patterns.py │ │ ├── conditioners.py │ │ ├── diffusion.py │ │ ├── diffusion_prior.py │ │ ├── discriminators.py │ │ ├── dit.py │ │ ├── factory.py │ │ ├── lm.py │ │ ├── lm_backbone.py │ │ ├── local_attention.py │ │ ├── pqmf.py │ │ ├── pretrained.py │ │ ├── pretransforms.py │ │ ├── transformer.py │ │ ├── utils.py │ │ └── wavelets.py │ └── training │ │ ├── __init__.py │ │ ├── autoencoders.py │ │ ├── diffusion.py │ │ ├── factory.py │ │ ├── lm.py │ │ ├── losses │ │ ├── __init__.py │ │ ├── auraloss.py │ │ └── losses.py │ │ └── utils.py └── utils.py ├── requirements.txt └── web ├── index.html └── javascript └── sound-lab.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/__init__.py -------------------------------------------------------------------------------- /ffmpy-0.3.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/ffmpy-0.3.2/LICENSE -------------------------------------------------------------------------------- /ffmpy-0.3.2/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/ffmpy-0.3.2/PKG-INFO -------------------------------------------------------------------------------- /ffmpy-0.3.2/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/ffmpy-0.3.2/README.rst -------------------------------------------------------------------------------- /ffmpy-0.3.2/build/lib/ffmpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/ffmpy-0.3.2/build/lib/ffmpy.py -------------------------------------------------------------------------------- /ffmpy-0.3.2/ffmpy.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/ffmpy-0.3.2/ffmpy.egg-info/PKG-INFO -------------------------------------------------------------------------------- /ffmpy-0.3.2/ffmpy.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/ffmpy-0.3.2/ffmpy.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /ffmpy-0.3.2/ffmpy.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ffmpy-0.3.2/ffmpy.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ffmpy 2 | -------------------------------------------------------------------------------- /ffmpy-0.3.2/ffmpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/ffmpy-0.3.2/ffmpy.py -------------------------------------------------------------------------------- /ffmpy-0.3.2/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/ffmpy-0.3.2/setup.cfg -------------------------------------------------------------------------------- /ffmpy-0.3.2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/ffmpy-0.3.2/setup.py -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/install.bat -------------------------------------------------------------------------------- /musicgen_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/musicgen_model.png -------------------------------------------------------------------------------- /nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes.png -------------------------------------------------------------------------------- /nodes/StableAudioNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/StableAudioNode.py -------------------------------------------------------------------------------- /nodes/musicNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/musicNode.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/__init__.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/configs/dataset_configs/custom_metadata/custom_md_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/configs/dataset_configs/custom_metadata/custom_md_example.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/configs/dataset_configs/local_training_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/configs/dataset_configs/local_training_example.json -------------------------------------------------------------------------------- /nodes/stable_audio_tools/configs/dataset_configs/s3_wds_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/configs/dataset_configs/s3_wds_example.json -------------------------------------------------------------------------------- /nodes/stable_audio_tools/configs/model_configs/autoencoders/dac_2048_32_vae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/configs/model_configs/autoencoders/dac_2048_32_vae.json -------------------------------------------------------------------------------- /nodes/stable_audio_tools/configs/model_configs/autoencoders/encodec_musicgen_rvq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/configs/model_configs/autoencoders/encodec_musicgen_rvq.json -------------------------------------------------------------------------------- /nodes/stable_audio_tools/configs/model_configs/autoencoders/stable_audio_1_0_vae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/configs/model_configs/autoencoders/stable_audio_1_0_vae.json -------------------------------------------------------------------------------- /nodes/stable_audio_tools/configs/model_configs/autoencoders/stable_audio_2_0_vae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/configs/model_configs/autoencoders/stable_audio_2_0_vae.json -------------------------------------------------------------------------------- /nodes/stable_audio_tools/configs/model_configs/dance_diffusion/dance_diffusion_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/configs/model_configs/dance_diffusion/dance_diffusion_base.json -------------------------------------------------------------------------------- /nodes/stable_audio_tools/configs/model_configs/dance_diffusion/dance_diffusion_base_16k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/configs/model_configs/dance_diffusion/dance_diffusion_base_16k.json -------------------------------------------------------------------------------- /nodes/stable_audio_tools/configs/model_configs/dance_diffusion/dance_diffusion_base_44k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/configs/model_configs/dance_diffusion/dance_diffusion_base_44k.json -------------------------------------------------------------------------------- /nodes/stable_audio_tools/configs/model_configs/dance_diffusion/dance_diffusion_large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/configs/model_configs/dance_diffusion/dance_diffusion_large.json -------------------------------------------------------------------------------- /nodes/stable_audio_tools/configs/model_configs/txt2audio/stable_audio_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/configs/model_configs/txt2audio/stable_audio_1_0.json -------------------------------------------------------------------------------- /nodes/stable_audio_tools/configs/model_configs/txt2audio/stable_audio_2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/configs/model_configs/txt2audio/stable_audio_2_0.json -------------------------------------------------------------------------------- /nodes/stable_audio_tools/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/stable_audio_tools/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/data/dataset.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/data/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/data/utils.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/inference/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/stable_audio_tools/inference/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/inference/generation.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/inference/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/inference/sampling.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/inference/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/inference/utils.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/stable_audio_tools/interface/gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/interface/gradio.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/__init__.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/adp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/adp.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/autoencoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/autoencoders.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/blocks.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/bottleneck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/bottleneck.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/codebook_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/codebook_patterns.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/conditioners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/conditioners.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/diffusion.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/diffusion_prior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/diffusion_prior.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/discriminators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/discriminators.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/dit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/dit.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/factory.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/lm.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/lm_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/lm_backbone.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/local_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/local_attention.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/pqmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/pqmf.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/pretrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/pretrained.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/pretransforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/pretransforms.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/transformer.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/utils.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/models/wavelets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/models/wavelets.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/training/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/training/__init__.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/training/autoencoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/training/autoencoders.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/training/diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/training/diffusion.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/training/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/training/factory.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/training/lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/training/lm.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/training/losses/__init__.py: -------------------------------------------------------------------------------- 1 | from .losses import * -------------------------------------------------------------------------------- /nodes/stable_audio_tools/training/losses/auraloss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/training/losses/auraloss.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/training/losses/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/training/losses/losses.py -------------------------------------------------------------------------------- /nodes/stable_audio_tools/training/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/stable_audio_tools/training/utils.py -------------------------------------------------------------------------------- /nodes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/nodes/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/requirements.txt -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/javascript/sound-lab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MixLabPro/comfyui-sound-lab/HEAD/web/javascript/sound-lab.js --------------------------------------------------------------------------------