├── .github └── workflows │ └── publish.yml ├── .gitignore ├── INSTALL.md ├── LICENSE ├── README.md ├── STRUCTURE.md ├── __init__.json ├── __init__.py ├── images └── example.png ├── node_list.json ├── nodes.py ├── pyproject.toml ├── pyrightconfig.json ├── requirements.txt └── src ├── __init__.py ├── config.py ├── enhanced_master_audio.py ├── master_audio.py ├── stereo_enhance.py ├── utils.py └── vocal_enhance.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/README.md -------------------------------------------------------------------------------- /STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/STRUCTURE.md -------------------------------------------------------------------------------- /__init__.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/__init__.json -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/__init__.py -------------------------------------------------------------------------------- /images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/images/example.png -------------------------------------------------------------------------------- /node_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/node_list.json -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/pyrightconfig.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/src/config.py -------------------------------------------------------------------------------- /src/enhanced_master_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/src/enhanced_master_audio.py -------------------------------------------------------------------------------- /src/master_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/src/master_audio.py -------------------------------------------------------------------------------- /src/stereo_enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/src/stereo_enhance.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/vocal_enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeankassio/ComfyUI_MusicTools/HEAD/src/vocal_enhance.py --------------------------------------------------------------------------------