feat(wan): Add Wan2.1/2.2 T2V with quantization support

This commit is contained in:
Daniel
2026-02-26 16:16:07 +01:00
parent 7a74946c57
commit e64483a66a
21 changed files with 5309 additions and 35 deletions

View File

@@ -19,7 +19,9 @@ dependencies = [
"tqdm",
"opencv-python>=4.12.0.88",
"Pillow>=10.3.0",
"mlx-vlm"
"mlx-vlm",
"imageio>=2.37.2",
"imageio-ffmpeg>=0.6.0",
]
license = {text="MIT"}
authors = [
@@ -42,6 +44,7 @@ Issues = "https://github.com/Blaizzy/mlx-video/issues"
[project.scripts]
"mlx_video.generate" = "mlx_video.generate:main"
"mlx_video.generate_wan" = "mlx_video.generate_wan:main"
[tool.setuptools.packages.find]
include = ["mlx_video*"]
@@ -52,4 +55,4 @@ version = {attr = "mlx_video.version.__version__"}
[project.optional-dependencies]
dev = [
"pytest",
]
]