Diffusers How to use Remade-AI/Ultra-Wide with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
from diffusers.utils import export_to_video
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("Wan-AI/Wan2.1-T2V-14B", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("Remade-AI/Ultra-Wide")
prompt = "u1tr4_w1d3, ultra wide angle shot A lone figure walks across a desolate, rocky landscape. The sky is a swirling mix of orange and purple, and the sun is setting. In the distance, a towering, alien structure looms."
output = pipe(prompt=prompt).frames[0]
export_to_video(output, "output.mp4")