Diffusers How to use Remade-AI/Crash-zoom-out with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("Wan-AI/Wan2.1-I2V-14B-480P,Wan-AI/Wan2.1-I2V-14B-480P-Diffusers", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("Remade-AI/Crash-zoom-out")
prompt = "The video begins with a close-up on a man's face, his hands tied with rope, and an anxious expression. Then, a cr34sh crash zoom out effect reveals a dark and obscure room, the man is still tied up and two men wearing balaklavas and holding guns appear to be standing behind him. "
image = pipe(prompt).images[0]