├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── assets ├── fonts │ └── DMSans-VariableFont_opsz,wght.ttf └── images │ ├── demo_moving_watermark.webp │ ├── demo_video.webp │ └── example.png ├── kimara_ai_advanced_watermarks.py ├── pyproject.toml ├── requirements.txt └── utils.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/fonts/DMSans-VariableFont_opsz,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks/HEAD/assets/fonts/DMSans-VariableFont_opsz,wght.ttf -------------------------------------------------------------------------------- /assets/images/demo_moving_watermark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks/HEAD/assets/images/demo_moving_watermark.webp -------------------------------------------------------------------------------- /assets/images/demo_video.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks/HEAD/assets/images/demo_video.webp -------------------------------------------------------------------------------- /assets/images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks/HEAD/assets/images/example.png -------------------------------------------------------------------------------- /kimara_ai_advanced_watermarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks/HEAD/kimara_ai_advanced_watermarks.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | numpy 3 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimara-ai/ComfyUI-Kimara-AI-Advanced-Watermarks/HEAD/utils.py --------------------------------------------------------------------------------