├── .dockerignore ├── .github ├── actions │ └── docker-publish-action │ │ └── action.yml └── workflows │ └── publish.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── diffusers_helper ├── bucket_tools.py ├── clip_vision.py ├── dit_common.py ├── gradio │ └── progress_bar.py ├── hf_login.py ├── hunyuan.py ├── k_diffusion │ ├── uni_pc_fm.py │ └── wrapper.py ├── lora_utils.py ├── memory.py ├── models │ ├── hunyuan_video_packed.py │ ├── mag_cache.py │ └── mag_cache_ratios.py ├── pipelines │ └── k_diffusion_hunyuan.py ├── thread_utils.py └── utils.py ├── docker-compose.yml ├── install.bat ├── modules ├── __init__.py ├── generators │ ├── __init__.py │ ├── base_generator.py │ ├── f1_generator.py │ ├── original_generator.py │ ├── original_with_endframe_generator.py │ ├── video_base_generator.py │ ├── video_f1_generator.py │ └── video_generator.py ├── grid_builder.py ├── interface.py ├── llm_captioner.py ├── llm_enhancer.py ├── pipelines │ ├── __init__.py │ ├── base_pipeline.py │ ├── f1_pipeline.py │ ├── metadata_utils.py │ ├── original_pipeline.py │ ├── original_with_endframe_pipeline.py │ ├── video_f1_pipeline.py │ ├── video_pipeline.py │ ├── video_tools.py │ └── worker.py ├── prompt_handler.py ├── settings.py ├── toolbox │ ├── RIFE │ │ ├── IFNet_HDv3.py │ │ ├── RIFE_HDv3.py │ │ ├── __int__.py │ │ ├── loss.py │ │ └── warplayer.py │ ├── esrgan_core.py │ ├── message_manager.py │ ├── rife_core.py │ ├── setup_ffmpeg.py │ ├── system_monitor.py │ └── toolbox_processor.py ├── toolbox_app.py ├── version.py ├── video_queue.py └── xy_plot_ui.py ├── requirements.txt ├── run.bat ├── run.sh ├── studio.py └── update.bat /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/actions/docker-publish-action/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/.github/actions/docker-publish-action/action.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/README.md -------------------------------------------------------------------------------- /diffusers_helper/bucket_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/bucket_tools.py -------------------------------------------------------------------------------- /diffusers_helper/clip_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/clip_vision.py -------------------------------------------------------------------------------- /diffusers_helper/dit_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/dit_common.py -------------------------------------------------------------------------------- /diffusers_helper/gradio/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/gradio/progress_bar.py -------------------------------------------------------------------------------- /diffusers_helper/hf_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/hf_login.py -------------------------------------------------------------------------------- /diffusers_helper/hunyuan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/hunyuan.py -------------------------------------------------------------------------------- /diffusers_helper/k_diffusion/uni_pc_fm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/k_diffusion/uni_pc_fm.py -------------------------------------------------------------------------------- /diffusers_helper/k_diffusion/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/k_diffusion/wrapper.py -------------------------------------------------------------------------------- /diffusers_helper/lora_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/lora_utils.py -------------------------------------------------------------------------------- /diffusers_helper/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/memory.py -------------------------------------------------------------------------------- /diffusers_helper/models/hunyuan_video_packed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/models/hunyuan_video_packed.py -------------------------------------------------------------------------------- /diffusers_helper/models/mag_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/models/mag_cache.py -------------------------------------------------------------------------------- /diffusers_helper/models/mag_cache_ratios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/models/mag_cache_ratios.py -------------------------------------------------------------------------------- /diffusers_helper/pipelines/k_diffusion_hunyuan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/pipelines/k_diffusion_hunyuan.py -------------------------------------------------------------------------------- /diffusers_helper/thread_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/thread_utils.py -------------------------------------------------------------------------------- /diffusers_helper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/diffusers_helper/utils.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/install.bat -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/generators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/generators/__init__.py -------------------------------------------------------------------------------- /modules/generators/base_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/generators/base_generator.py -------------------------------------------------------------------------------- /modules/generators/f1_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/generators/f1_generator.py -------------------------------------------------------------------------------- /modules/generators/original_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/generators/original_generator.py -------------------------------------------------------------------------------- /modules/generators/original_with_endframe_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/generators/original_with_endframe_generator.py -------------------------------------------------------------------------------- /modules/generators/video_base_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/generators/video_base_generator.py -------------------------------------------------------------------------------- /modules/generators/video_f1_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/generators/video_f1_generator.py -------------------------------------------------------------------------------- /modules/generators/video_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/generators/video_generator.py -------------------------------------------------------------------------------- /modules/grid_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/grid_builder.py -------------------------------------------------------------------------------- /modules/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/interface.py -------------------------------------------------------------------------------- /modules/llm_captioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/llm_captioner.py -------------------------------------------------------------------------------- /modules/llm_enhancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/llm_enhancer.py -------------------------------------------------------------------------------- /modules/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/pipelines/__init__.py -------------------------------------------------------------------------------- /modules/pipelines/base_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/pipelines/base_pipeline.py -------------------------------------------------------------------------------- /modules/pipelines/f1_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/pipelines/f1_pipeline.py -------------------------------------------------------------------------------- /modules/pipelines/metadata_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/pipelines/metadata_utils.py -------------------------------------------------------------------------------- /modules/pipelines/original_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/pipelines/original_pipeline.py -------------------------------------------------------------------------------- /modules/pipelines/original_with_endframe_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/pipelines/original_with_endframe_pipeline.py -------------------------------------------------------------------------------- /modules/pipelines/video_f1_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/pipelines/video_f1_pipeline.py -------------------------------------------------------------------------------- /modules/pipelines/video_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/pipelines/video_pipeline.py -------------------------------------------------------------------------------- /modules/pipelines/video_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/pipelines/video_tools.py -------------------------------------------------------------------------------- /modules/pipelines/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/pipelines/worker.py -------------------------------------------------------------------------------- /modules/prompt_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/prompt_handler.py -------------------------------------------------------------------------------- /modules/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/settings.py -------------------------------------------------------------------------------- /modules/toolbox/RIFE/IFNet_HDv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/toolbox/RIFE/IFNet_HDv3.py -------------------------------------------------------------------------------- /modules/toolbox/RIFE/RIFE_HDv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/toolbox/RIFE/RIFE_HDv3.py -------------------------------------------------------------------------------- /modules/toolbox/RIFE/__int__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/toolbox/RIFE/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/toolbox/RIFE/loss.py -------------------------------------------------------------------------------- /modules/toolbox/RIFE/warplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/toolbox/RIFE/warplayer.py -------------------------------------------------------------------------------- /modules/toolbox/esrgan_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/toolbox/esrgan_core.py -------------------------------------------------------------------------------- /modules/toolbox/message_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/toolbox/message_manager.py -------------------------------------------------------------------------------- /modules/toolbox/rife_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/toolbox/rife_core.py -------------------------------------------------------------------------------- /modules/toolbox/setup_ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/toolbox/setup_ffmpeg.py -------------------------------------------------------------------------------- /modules/toolbox/system_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/toolbox/system_monitor.py -------------------------------------------------------------------------------- /modules/toolbox/toolbox_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/toolbox/toolbox_processor.py -------------------------------------------------------------------------------- /modules/toolbox_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/toolbox_app.py -------------------------------------------------------------------------------- /modules/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/version.py -------------------------------------------------------------------------------- /modules/video_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/video_queue.py -------------------------------------------------------------------------------- /modules/xy_plot_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/modules/xy_plot_ui.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/run.bat -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/run.sh -------------------------------------------------------------------------------- /studio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/studio.py -------------------------------------------------------------------------------- /update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FP-Studio/framepack-studio/HEAD/update.bat --------------------------------------------------------------------------------