frameforge-studio / models /huggingface-wan22.html
00Boobs00's picture
To successfully establish a robust image-to-video generation pipeline using the Lora models available at [Hugging Face's Wan2.2 Loras repository](https://huggingface.co/Playtime-AI/Wan2.2-Loras), we will need to create a user-friendly system that simplifies the process of loading models and generating videos from uploaded images.
12a4e8b verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hugging Face Wan2.2 - FrameForge Studio</title>
<link rel="stylesheet" href="/style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-900 text-white">
<custom-header></custom-header>
<main class="container mx-auto px-4 py-8">
<section class="mb-12">
<div class="flex flex-col md:flex-row gap-8">
<div class="md:w-1/2">
<h1 class="text-4xl font-bold mb-4">Hugging Face Wan2.2</h1>
<p class="text-gray-300 mb-6">
Advanced model from Hugging Face repository for high-quality image-to-video generation.
This model provides state-of-the-art results with enhanced visual fidelity.
</p>
<div class="bg-gray-800 rounded-xl p-6 mb-6">
<h2 class="text-2xl font-bold mb-4">Model Parameters</h2>
<div class="space-y-4">
<div>
<label class="block text-gray-300 mb-2">Quality Level</label>
<select class="w-full bg-gray-700 text-white rounded p-2" id="quality-level">
<option value="standard">Standard</option>
<option value="high">High</option>
<option value="ultra">Ultra</option>
</select>
</div>
<div>
<label class="block text-gray-300 mb-2">Style Intensity: <span id="style-value">7</span>/10</label>
<input type="range" min="1" max="10" value="7" class="w-full accent-green-500" id="style-slider">
</div>
<div>
<label class="block text-gray-300 mb-2">Frame Rate: <span id="fps-value">24</span>fps</label>
<input type="range" min="12" max="60" value="24" class="w-full accent-orange-500" id="fps-slider">
</div>
<div>
<label class="block text-gray-300 mb-2">Duration: <span id="duration-value">5</span>s</label>
<input type="range" min="1" max="30" value="5" class="w-full accent-purple-500" id="duration-slider">
</div>
</div>
</div>
<button id="generate-btn" class="bg-green-500 hover:bg-green-600 text-white font-bold py-3 px-6 rounded-full transition duration-300 w-full">
Generate Video
</button>
</div>
<div class="md:w-1/2">
<div class="bg-gray-800 rounded-xl p-6">
<h2 class="text-2xl font-bold mb-4">Preview</h2>
<div class="bg-gray-700 h-80 rounded-lg flex items-center justify-center">
<i data-feather="star" class="text-yellow-500 w-16 h-16"></i>
</div>
<div class="mt-4 flex justify-between">
<button class="bg-gray-700 hover:bg-gray-600 text-white py-2 px-4 rounded">
<i data-feather="play" class="w-4 h-4"></i>
</button>
<button class="bg-gray-700 hover:bg-gray-600 text-white py-2 px-4 rounded">
<i data-feather="download" class="w-4 h-4"></i>
</button>
</div>
</div>
</div>
</div>
</section>
<section class="mb-12">
<h2 class="text-3xl font-bold mb-6">Model Information</h2>
<div class="bg-gray-800 rounded-xl p-6">
<h3 class="text-xl font-bold mb-4">About Wan2.2</h3>
<p class="text-gray-300 mb-4">
The Wan2.2 model from Hugging Face is a cutting-edge solution for image-to-video generation.
It leverages advanced diffusion techniques to create smooth, high-quality videos from static images.
</p>
<h3 class="text-xl font-bold mb-4">Key Features</h3>
<ul class="list-disc list-inside text-gray-300 mb-4">
<li>High-resolution video output (up to 4K)</li>
<li>Advanced motion synthesis algorithms</li>
<li>Support for complex scene transitions</li>
<li>Optimized for diverse artistic styles</li>
<li>Fast processing with GPU acceleration</li>
</ul>
<h3 class="text-xl font-bold mb-4">Recommended Use Cases</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="bg-gray-700 p-4 rounded-lg">
<h4 class="font-bold mb-2">Professional Content Creation</h4>
<p class="text-gray-400 text-sm">Ideal for marketing videos, presentations, and promotional content</p>
</div>
<div class="bg-gray-700 p-4 rounded-lg">
<h4 class="font-bold mb-2">Artistic Projects</h4>
<p class="text-gray-400 text-sm">Perfect for digital artists and creative storytellers</p>
</div>
<div class="bg-gray-700 p-4 rounded-lg">
<h4 class="font-bold mb-2">Social Media Content</h4>
<p class="text-gray-400 text-sm">Create engaging posts for various social platforms</p>
</div>
<div class="bg-gray-700 p-4 rounded-lg">
<h4 class="font-bold mb-2">Educational Materials</h4>
<p class="text-gray-400 text-sm">Transform static educational images into dynamic videos</p>
</div>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="/components/header.js"></script>
<script src="/components/footer.js"></script>
<script src="/script.js"></script>
<script>
feather.replace();
// Slider functionality
document.getElementById('style-slider').addEventListener('input', function() {
document.getElementById('style-value').textContent = this.value;
});
document.getElementById('fps-slider').addEventListener('input', function() {
document.getElementById('fps-value').textContent = this.value;
});
document.getElementById('duration-slider').addEventListener('input', function() {
document.getElementById('duration-value').textContent = this.value;
});
// Generate button functionality
document.getElementById('generate-btn').addEventListener('click', function() {
this.innerHTML = '<i data-feather="loader" class="animate-spin mr-2"></i> Generating...';
feather.replace();
// Simulate processing time
setTimeout(() => {
this.innerHTML = 'Generate Video';
feather.replace();
alert('Video generated successfully! Check the preview section.');
}, 2000);
});
</script>
</body>
</html>