gitextract_m8ktm8q9/ ├── .dockerignore ├── .git-blame-ignore-revs ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── ci.yml │ └── docs.yml ├── .gitignore ├── .python-version ├── BiRefNetModule/ │ ├── checkpoints/ │ │ └── .gitkeep │ └── wrapper.py ├── CONTRIBUTING.md ├── ClipsForInference/ │ └── .gitkeep ├── CorridorKeyModule/ │ ├── IgnoredCheckpoints/ │ │ └── .gitkeep │ ├── README.md │ ├── __init__.py │ ├── backend.py │ ├── checkpoints/ │ │ └── .gitkeep │ ├── core/ │ │ ├── __init__.py │ │ ├── color_utils.py │ │ └── model_transformer.py │ └── inference_engine.py ├── CorridorKey_DRAG_CLIPS_HERE_local.bat ├── CorridorKey_DRAG_CLIPS_HERE_local.sh ├── Dockerfile ├── IgnoredClips/ │ └── .gitkeep ├── Install_CorridorKey_Linux_Mac.sh ├── Install_CorridorKey_Windows.bat ├── Install_GVM_Linux_Mac.sh ├── Install_GVM_Windows.bat ├── Install_VideoMaMa_Linux_Mac.sh ├── Install_VideoMaMa_Windows.bat ├── LICENSE ├── Output/ │ └── .gitkeep ├── README.md ├── RunGVMOnly.sh ├── RunInferenceOnly.sh ├── VideoMaMaInferenceModule/ │ ├── LICENSE.md │ ├── README.md │ ├── __init__.py │ ├── checkpoints/ │ │ └── .gitkeep │ ├── inference.py │ └── pipeline.py ├── backend/ │ ├── __init__.py │ ├── clip_state.py │ ├── errors.py │ ├── ffmpeg_tools.py │ ├── frame_io.py │ ├── job_queue.py │ ├── natural_sort.py │ ├── project.py │ ├── service.py │ └── validators.py ├── clip_manager.py ├── corridorkey_cli.py ├── device_utils.py ├── docker-compose.yml ├── docs/ │ ├── LLM_HANDOVER.md │ └── index.md ├── gvm_core/ │ ├── LICENSE.md │ ├── README.md │ ├── __init__.py │ ├── gvm/ │ │ ├── __init__.py │ │ ├── models/ │ │ │ ├── __init__.py │ │ │ └── unet_spatio_temporal_condition.py │ │ ├── pipelines/ │ │ │ └── pipeline_gvm.py │ │ └── utils/ │ │ ├── __init__.py │ │ └── inference_utils.py │ ├── weights/ │ │ └── .gitkeep │ └── wrapper.py ├── pyproject.toml ├── renovate.json ├── test_vram.py ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── test_backend.py │ ├── test_cli.py │ ├── test_clip_manager.py │ ├── test_color_utils.py │ ├── test_device_utils.py │ ├── test_e2e_workflow.py │ ├── test_exr_gamma_bug_condition.py │ ├── test_exr_gamma_preservation.py │ ├── test_frame_io.py │ ├── test_gamma_consistency.py │ ├── test_imports.py │ ├── test_inference_engine.py │ ├── test_mlx_smoke.py │ ├── test_pbt_auto_download.py │ ├── test_pbt_backend_resolution.py │ ├── test_pbt_dep_preservation.py │ └── test_pyproject_structure.py └── zensical.toml