Sandor3D commited on
Commit
d284fbd
·
verified ·
1 Parent(s): 140cce5

remember it should work as an extension and there for should be able to download a zip folder to install in premier pro - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +85 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Plugin R D
3
- emoji: 📊
4
- colorFrom: green
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: plugin-r-d
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,85 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Premiere Pro False Color Analyzer Extension</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ /* Custom CSS for elements that need more precise styling */
11
+ .gradient-bg {
12
+ background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
13
+ }
14
+ .panel-shadow {
15
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
16
+ }
17
+ </style>
18
+ </head>
19
+ <body class="gradient-bg text-white min-h-screen p-8">
20
+ <div class="max-w-md mx-auto bg-gray-800 rounded-xl shadow-md overflow-hidden panel-shadow">
21
+ <div class="p-6">
22
+ <h2 class="text-xl font-bold mb-4">Lumetri Heatmap Analyzer</h2>
23
+ <p class="text-gray-300 mb-4">Compare original footage with false color analysis</p>
24
+
25
+ <div class="grid grid-cols-2 gap-4 mb-4">
26
+ <div class="bg-black rounded-lg aspect-video flex items-center justify-center">
27
+ <p class="text-gray-500">Original Footage</p>
28
+ </div>
29
+ <div class="bg-black rounded-lg aspect-video flex items-center justify-center">
30
+ <p class="text-gray-500">False Color Preview</p>
31
+ </div>
32
+ </div>
33
+
34
+ <div class="flex justify-between text-sm text-gray-400 mb-4">
35
+ <div>
36
+ <label class="block">Exposure Range</label>
37
+ <input type="range" class="w-full" min="0" max="100" value="50">
38
+ </div>
39
+ <div>
40
+ <label class="block">Color Sensitivity</label>
41
+ <input type="range" class="w-full" min="0" max="100" value="75">
42
+ </div>
43
+ </div>
44
+
45
+ <div class="mt-6 flex space-x-4 flex-wrap gap-2">
46
+ <button class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded">
47
+ <i class="fas fa-sync-alt mr-2"></i>Update Preview
48
+ </button>
49
+ <button class="bg-purple-600 hover:bg-purple-700 px-4 py-2 rounded">
50
+ <i class="fas fa-eye mr-2"></i>Toggle False Color
51
+ </button>
52
+ <button class="bg-green-600 hover:bg-green-700 px-4 py-2 rounded">
53
+ <i class="fas fa-save mr-2"></i>Save Preset
54
+ </button>
55
+ <button class="bg-yellow-600 hover:bg-yellow-700 px-4 py-2 rounded" id="downloadExtension">
56
+ <i class="fas fa-file-archive mr-2"></i>Download Extension
57
+ </button>
58
+ </div>
59
+ <div class="mt-4 text-sm text-gray-300">
60
+ <p>How to install:</p>
61
+ <ol class="list-decimal pl-5 mt-2 space-y-1">
62
+ <li>Download the extension package</li>
63
+ <li>Extract the ZIP file</li>
64
+ <li>Copy the folder to Adobe Premiere Pro's extensions directory</li>
65
+ <li>Restart Premiere Pro</li>
66
+ </ol>
67
+ <p class="mt-4">How to use:</p>
68
+ <ol class="list-decimal pl-5 mt-2 space-y-1">
69
+ <li>Apply to your footage in Premiere Pro</li>
70
+ <li>Use the toggle to compare original and false color views</li>
71
+ <li>Adjust exposure and sensitivity as needed</li>
72
+ <li>Save presets for different shooting conditions</li>
73
+ </ol>
74
+ </div>
75
+ </div>
76
+ </div>
77
+ <script>
78
+ document.getElementById('downloadExtension').addEventListener('click', function() {
79
+ // In a real implementation, this would point to your actual extension package
80
+ alert('Downloading extension package...');
81
+ // window.location.href = '/path/to/extension.zip';
82
+ });
83
+ </script>
84
+ <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>
85
+ </html>