Downloads · 30 days
12
30% of all-time downloads
SuhaanCoding/Wan2.2-S2V-14B-Diffusers
Wan2.2-S2V-14B-Diffusers is a image-to-video model from SuhaanCoding. Use it for the image-to-video task on the model card, and read the license before you ship it in a product. It is set up for diffusers. The card lists the license as apache-2.0.
This is Wan-AI/Wan2.2-S2V-14B — a model that animates a picture of a person in sync with a voice recording — repacked into the folder layout that FastVideo loads.
Downloads · 30 days
12
30% of all-time downloads
All-time downloads
40
Public
Parameters
16.3B
58.4 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors57.1 GB · 98%
From the Hugging Face model README
This is Wan-AI/Wan2.2-S2V-14B — a model that animates a picture of a person in sync with a voice recording — repacked into the folder layout that FastVideo loads.
No weights were changed. The video model tensors are byte-identical copies of the official release. The text encoder, VAE, tokenizer and scheduler come from Wan-AI's own Diffusers release of Wan2.1 (the same weights S2V uses), and the wav2vec2 speech encoder is the one bundled inside the official S2V repo.
Made with
scripts/checkpoint_conversion/wan_s2v_to_diffusers.py
from FastVideo PR #1683.
from fastvideo import VideoGenerator
gen = VideoGenerator.from_pretrained("SuhaanCoding/Wan2.2-S2V-14B-Diffusers")
gen.generate_video(
prompt="...",
image_path="face.jpg",
audio_path="speech.wav",
output_path="out.mp4",
save_video=True,
)