├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── example_workflows ├── example_ltx_flow_edit.json ├── example_ltx_interpolation.json ├── example_ltx_inversion.json ├── example_ltx_iv2v.json ├── example_ltx_rf_edit.json └── example_ltxv_stg.json ├── modules └── ltx_model.py ├── nodes ├── attn_bank_nodes.py ├── attn_override_node.py ├── latent_guide_node.py ├── ltx_feta_enhance_node.py ├── ltx_flowedit_nodes.py ├── ltx_inverse_model_pred_nodes.py ├── ltx_pag_node.py ├── modify_ltx_model_node.py ├── rectified_sampler_nodes.py └── rf_edit_sampler_nodes.py └── utils ├── attn_bank.py ├── feta_enhance_utils.py ├── latent_guide.py ├── module_utils.py └── noise_utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/__init__.py -------------------------------------------------------------------------------- /example_workflows/example_ltx_flow_edit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/example_workflows/example_ltx_flow_edit.json -------------------------------------------------------------------------------- /example_workflows/example_ltx_interpolation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/example_workflows/example_ltx_interpolation.json -------------------------------------------------------------------------------- /example_workflows/example_ltx_inversion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/example_workflows/example_ltx_inversion.json -------------------------------------------------------------------------------- /example_workflows/example_ltx_iv2v.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/example_workflows/example_ltx_iv2v.json -------------------------------------------------------------------------------- /example_workflows/example_ltx_rf_edit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/example_workflows/example_ltx_rf_edit.json -------------------------------------------------------------------------------- /example_workflows/example_ltxv_stg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/example_workflows/example_ltxv_stg.json -------------------------------------------------------------------------------- /modules/ltx_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/modules/ltx_model.py -------------------------------------------------------------------------------- /nodes/attn_bank_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/nodes/attn_bank_nodes.py -------------------------------------------------------------------------------- /nodes/attn_override_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/nodes/attn_override_node.py -------------------------------------------------------------------------------- /nodes/latent_guide_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/nodes/latent_guide_node.py -------------------------------------------------------------------------------- /nodes/ltx_feta_enhance_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/nodes/ltx_feta_enhance_node.py -------------------------------------------------------------------------------- /nodes/ltx_flowedit_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/nodes/ltx_flowedit_nodes.py -------------------------------------------------------------------------------- /nodes/ltx_inverse_model_pred_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/nodes/ltx_inverse_model_pred_nodes.py -------------------------------------------------------------------------------- /nodes/ltx_pag_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/nodes/ltx_pag_node.py -------------------------------------------------------------------------------- /nodes/modify_ltx_model_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/nodes/modify_ltx_model_node.py -------------------------------------------------------------------------------- /nodes/rectified_sampler_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/nodes/rectified_sampler_nodes.py -------------------------------------------------------------------------------- /nodes/rf_edit_sampler_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/nodes/rf_edit_sampler_nodes.py -------------------------------------------------------------------------------- /utils/attn_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/utils/attn_bank.py -------------------------------------------------------------------------------- /utils/feta_enhance_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/utils/feta_enhance_utils.py -------------------------------------------------------------------------------- /utils/latent_guide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/utils/latent_guide.py -------------------------------------------------------------------------------- /utils/module_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/utils/module_utils.py -------------------------------------------------------------------------------- /utils/noise_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-LTXTricks/HEAD/utils/noise_utils.py --------------------------------------------------------------------------------