gitextract_kwee4pen/ ├── .gitattributes ├── .github/ │ └── workflows/ │ └── publish_action.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── deforum_nodes/ │ ├── __init__.py │ ├── exec_hijack.py │ ├── mapping.py │ ├── modules/ │ │ ├── __init__.py │ │ ├── better_resize/ │ │ │ ├── __init__.py │ │ │ ├── interp_methods.py │ │ │ └── resize_right.py │ │ ├── deforum_comfy_sampler.py │ │ ├── deforum_comfyui_helpers.py │ │ ├── deforum_constants.py │ │ ├── deforum_node_base.py │ │ ├── deforum_ui_data.py │ │ ├── interp.py │ │ └── standalone_cadence.py │ └── nodes/ │ ├── __init__.py │ ├── deforum_advnoise_node.py │ ├── deforum_audiosync_nodes.py │ ├── deforum_cache_nodes.py │ ├── deforum_cnet_nodes.py │ ├── deforum_cond_nodes.py │ ├── deforum_data_nodes.py │ ├── deforum_framewarp_node.py │ ├── deforum_hybrid_nodes.py │ ├── deforum_image_nodes.py │ ├── deforum_interpolation_nodes.py │ ├── deforum_iteration_nodes.py │ ├── deforum_legacy_nodes.py │ ├── deforum_logic_nodes.py │ ├── deforum_noise_nodes.py │ ├── deforum_prompt_nodes.py │ ├── deforum_sampler_nodes.py │ ├── deforum_schedule_visualizer.py │ ├── deforum_video_nodes.py │ └── redirect_console_node.py ├── examples/ │ ├── deforum_base.json │ ├── deforum_cadence.json │ ├── deforum_integrated.json │ ├── deforum_ip_adapter.json │ ├── deforum_simple.json │ ├── deforum_stablecascade.json │ └── deforum_stablecascade_legacy.json ├── install.py ├── node_list.json └── web/ └── js/ └── deforumIterateNode.js