├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── modules ├── __init__.py ├── separate.py └── stft.py ├── nodes.py ├── public └── images │ ├── node_location.png │ ├── node_search.png │ └── node_structure.png ├── requirements.txt ├── scripts └── vocal_and_sound_remover.py ├── setup.bat └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdozmantar/ComfyUI-DeepExtract/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdozmantar/ComfyUI-DeepExtract/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdozmantar/ComfyUI-DeepExtract/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdozmantar/ComfyUI-DeepExtract/HEAD/__init__.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/separate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdozmantar/ComfyUI-DeepExtract/HEAD/modules/separate.py -------------------------------------------------------------------------------- /modules/stft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdozmantar/ComfyUI-DeepExtract/HEAD/modules/stft.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdozmantar/ComfyUI-DeepExtract/HEAD/nodes.py -------------------------------------------------------------------------------- /public/images/node_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdozmantar/ComfyUI-DeepExtract/HEAD/public/images/node_location.png -------------------------------------------------------------------------------- /public/images/node_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdozmantar/ComfyUI-DeepExtract/HEAD/public/images/node_search.png -------------------------------------------------------------------------------- /public/images/node_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdozmantar/ComfyUI-DeepExtract/HEAD/public/images/node_structure.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdozmantar/ComfyUI-DeepExtract/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/vocal_and_sound_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdozmantar/ComfyUI-DeepExtract/HEAD/scripts/vocal_and_sound_remover.py -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdozmantar/ComfyUI-DeepExtract/HEAD/setup.bat -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdozmantar/ComfyUI-DeepExtract/HEAD/setup.py --------------------------------------------------------------------------------