| from fastvideo import VideoGenerator |
|
|
| |
|
|
| OUTPUT_PATH = "video_samples" |
| def main(): |
| |
| |
| |
| |
| generator = VideoGenerator.from_pretrained( |
| "Wan-AI/Wan2.1-T2V-1.3B-Diffusers", |
| |
| num_gpus=1, |
| use_fsdp_inference=False, |
| dit_cpu_offload=False, |
| vae_cpu_offload=False, |
| text_encoder_cpu_offload=True, |
| pin_cpu_memory=True, |
| |
| ) |
|
|
| |
| |
| |
| |
| prompt = ( |
| "A curious raccoon peers through a vibrant field of yellow sunflowers, its eyes " |
| "wide with interest. The playful yet serene atmosphere is complemented by soft " |
| "natural light filtering through the petals. Mid-shot, warm and cheerful tones." |
| ) |
| video = generator.generate_video(prompt, output_path=OUTPUT_PATH, save_video=True) |
| |
|
|
| |
| |
| prompt2 = ( |
| "A majestic lion strides across the golden savanna, its powerful frame " |
| "glistening under the warm afternoon sun. The tall grass ripples gently in " |
| "the breeze, enhancing the lion's commanding presence. The tone is vibrant, " |
| "embodying the raw energy of the wild. Low angle, steady tracking shot, " |
| "cinematic.") |
| video2 = generator.generate_video(prompt2, output_path=OUTPUT_PATH, save_video=True) |
|
|
|
|
| if __name__ == "__main__": |
| main() |
|
|