Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Premiere Pro False Color Analyzer Extension</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| /* Custom CSS for elements that need more precise styling */ | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); | |
| } | |
| .panel-shadow { | |
| box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); | |
| } | |
| </style> | |
| </head> | |
| <body class="gradient-bg text-white min-h-screen p-8"> | |
| <div class="max-w-md mx-auto bg-gray-800 rounded-xl shadow-md overflow-hidden panel-shadow"> | |
| <div class="p-6"> | |
| <h2 class="text-xl font-bold mb-4">Lumetri Heatmap Analyzer</h2> | |
| <p class="text-gray-300 mb-4">Compare original footage with false color analysis</p> | |
| <div class="grid grid-cols-2 gap-4 mb-4"> | |
| <div class="bg-black rounded-lg aspect-video flex items-center justify-center"> | |
| <p class="text-gray-500">Original Footage</p> | |
| </div> | |
| <div class="bg-black rounded-lg aspect-video flex items-center justify-center"> | |
| <p class="text-gray-500">False Color Preview</p> | |
| </div> | |
| </div> | |
| <div class="flex justify-between text-sm text-gray-400 mb-4"> | |
| <div> | |
| <label class="block">Exposure Range</label> | |
| <input type="range" class="w-full" min="0" max="100" value="50"> | |
| </div> | |
| <div> | |
| <label class="block">Color Sensitivity</label> | |
| <input type="range" class="w-full" min="0" max="100" value="75"> | |
| </div> | |
| </div> | |
| <div class="mt-6 flex space-x-4 flex-wrap gap-2"> | |
| <button class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded"> | |
| <i class="fas fa-sync-alt mr-2"></i>Update Preview | |
| </button> | |
| <button class="bg-purple-600 hover:bg-purple-700 px-4 py-2 rounded"> | |
| <i class="fas fa-eye mr-2"></i>Toggle False Color | |
| </button> | |
| <button class="bg-green-600 hover:bg-green-700 px-4 py-2 rounded"> | |
| <i class="fas fa-save mr-2"></i>Save Preset | |
| </button> | |
| <button class="bg-yellow-600 hover:bg-yellow-700 px-4 py-2 rounded" id="downloadExtension"> | |
| <i class="fas fa-file-archive mr-2"></i>Download Extension | |
| </button> | |
| </div> | |
| <div class="mt-4 text-sm text-gray-300"> | |
| <p>How to install:</p> | |
| <ol class="list-decimal pl-5 mt-2 space-y-1"> | |
| <li>Download the extension package</li> | |
| <li>Extract the ZIP file</li> | |
| <li>Copy the folder to Adobe Premiere Pro's extensions directory</li> | |
| <li>Restart Premiere Pro</li> | |
| </ol> | |
| <p class="mt-4">How to use:</p> | |
| <ol class="list-decimal pl-5 mt-2 space-y-1"> | |
| <li>Apply to your footage in Premiere Pro</li> | |
| <li>Use the toggle to compare original and false color views</li> | |
| <li>Adjust exposure and sensitivity as needed</li> | |
| <li>Save presets for different shooting conditions</li> | |
| </ol> | |
| </div> | |
| </div> | |
| </div> | |
| <script> | |
| document.getElementById('downloadExtension').addEventListener('click', function() { | |
| // In a real implementation, this would point to your actual extension package | |
| alert('Downloading extension package...'); | |
| // window.location.href = '/path/to/extension.zip'; | |
| }); | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Sandor3D/plugin-r-d" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |