File size: 10,942 Bytes
bc18e51
 
 
 
 
66e45b5
bc18e51
 
 
 
 
 
 
 
 
 
 
 
66e45b5
bc18e51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a601b1d
 
 
 
bc18e51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4f3a209
 
 
 
 
 
bc18e51
 
4f3a209
 
 
 
 
 
 
 
 
 
 
bc18e51
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66e45b5
bc18e51
 
66e45b5
bc18e51
 
 
 
 
 
 
 
a601b1d
bc18e51
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>DanceDynamics</title>
    <link rel="stylesheet" href="/static/css/styles.css">
</head>
<body>
    <!-- Background Animation -->
    <div class="background-animation"></div>
    
    <!-- Header -->
    <header class="header">
        <div class="container">
            <div class="header-content">
                <h1 class="logo">
                    <span class="icon">🕺</span>
                    DanceDynamics
                </h1>
                <p class="tagline">AI-Powered Pose Detection & Movement Classification</p>
            </div>
        </div>
    </header>

    <!-- Main Content -->
    <main class="main-content">
        <div class="container">
            
            <!-- Upload Section -->
            <section class="upload-section" id="uploadSection">
                <div class="glass-card">
                    <div class="card-header">
                        <h2>📹 Upload Dance Video</h2>
                        <p>Drag and drop your video or click to browse</p>
                    </div>
                    
                    <div class="upload-zone" id="uploadZone">
                        <input type="file" id="fileInput" accept="video/mp4,video/webm,video/avi" hidden>
                        <div class="upload-icon">⬆️</div>
                        <p class="upload-text">Drop your video here</p>
                        <p class="upload-subtext">or click to browse</p>
                        <p class="upload-specs">MP4, WebM, AVI • Max 100MB • Up to 60 seconds</p>
                    </div>
                    
                    <div class="file-info" id="fileInfo" style="display: none;">
                        <div class="file-details">
                            <p class="file-name" id="fileName"></p>
                            <p class="file-meta" id="fileMeta"></p>
                        </div>
                        <button class="btn btn-primary" id="analyzeBtn">
                            ✨ Start Analysis
                        </button>
                    </div>
                </div>
            </section>

            <!-- Processing Section -->
            <section class="processing-section" id="processingSection" style="display: none;">
                <div class="glass-card">
                    <div class="card-header">
                        <h2>⚡ Processing Video</h2>
                        <p id="processingMessage">Initializing...</p>
                    </div>
                    
                    <div class="progress-container">
                        <div class="progress-bar">
                            <div class="progress-fill" id="progressFill"></div>
                        </div>
                        <div class="progress-text" id="progressText">0%</div>
                    </div>
                    
                    <div class="processing-stats">
                        <div class="stat-item">
                            <span class="stat-label">Status:</span>
                            <span class="stat-value" id="statusValue">Processing</span>
                        </div>
                        <div class="stat-item">
                            <span class="stat-label">Elapsed:</span>
                            <span class="stat-value" id="elapsedTime">0s</span>
                        </div>
                        <div class="stat-item">
                            <span class="stat-label">⏱️ ETA:</span>
                            <span class="stat-value" id="etaTime">--</span>
                        </div>
                    </div>
                </div>
            </section>

            <!-- Results Section -->
            <section class="results-section" id="resultsSection" style="display: none;">
                
                <!-- Video Comparison -->
                <div class="glass-card">
                    <div class="card-header">
                        <h2>🎥 Video Comparison</h2>
                        <p>Original vs Analyzed (with skeleton overlay)</p>
                    </div>
                    
                    <div class="video-grid">
                        <div class="video-container">
                            <h3>Original Video</h3>
                            <video id="originalVideo" controls></video>
                        </div>
                        <div class="video-container">
                            <h3>Analyzed Video</h3>
                            <video 
                                id="analyzedVideo" 
                                controls 
                                preload="metadata" 
                                playsinline
                                style="max-width: 100%; height: auto; background: #000;">
                                Your browser does not support the video tag.
                            </video>
                            <div class="video-fallback" id="videoFallback" style="display: none; background: #ffebee; padding: 15px; border-radius: 8px; margin-top: 10px; text-align: center;">
                                <p style="margin: 0 0 10px 0; color: #c62828; font-weight: 500;">
                                    ⚠️ Video cannot be played in browser
                                </p>
                                <a 
                                    id="downloadFallback" 
                                    href="#" 
                                    download
                                    style="display: inline-block; padding: 10px 20px; background: #ef4444; color: white; text-decoration: none; border-radius: 6px; font-weight: bold; transition: background 0.3s;">
                                    💾 Download Video Instead
                                </a>
                            </div>
                        </div>
                    </div>
                </div>

                <!-- Metrics Dashboard -->
                <div class="metrics-grid">
                    
                    <!-- Movement Classification -->
                    <div class="glass-card metric-card">
                        <div class="metric-header">
                            <span class="metric-icon">🕺</span>
                            <h3>Movement Type</h3>
                        </div>
                        <div class="metric-value" id="movementType">Dancing</div>
                        <div class="metric-subvalue">
                            Intensity: <span id="intensityValue">0</span>/100
                        </div>
                        <div class="intensity-bar">
                            <div class="intensity-fill" id="intensityFill"></div>
                        </div>
                    </div>

                    <!-- Detection Stats -->
                    <div class="glass-card metric-card">
                        <div class="metric-header">
                            <span class="metric-icon">🎯</span>
                            <h3>Detection Rate</h3>
                        </div>
                        <div class="metric-value" id="detectionRate">0%</div>
                        <div class="metric-subvalue">
                            <span id="framesDetected">0</span> / <span id="totalFrames">0</span> frames
                        </div>
                    </div>

                    <!-- Confidence Score -->
                    <div class="glass-card metric-card">
                        <div class="metric-header">
                            <span class="metric-icon"></span>
                            <h3>Avg Confidence</h3>
                        </div>
                        <div class="metric-value" id="confidenceScore">0.00</div>
                        <div class="metric-subvalue">Pose detection accuracy</div>
                    </div>

                    <!-- Smoothness Score -->
                    <div class="glass-card metric-card">
                        <div class="metric-header">
                            <span class="metric-icon">🌊</span>
                            <h3>Smoothness</h3>
                        </div>
                        <div class="metric-value" id="smoothnessScore">0</div>
                        <div class="metric-subvalue">Movement fluidity</div>
                    </div>
                </div>

                <!-- Body Part Activity -->
                <div class="glass-card">
                    <div class="card-header">
                        <h2>💪 Body Part Activity</h2>
                        <p>Movement intensity per body region</p>
                    </div>
                    
                    <div class="body-parts" id="bodyParts">
                        <!-- Populated by JavaScript -->
                    </div>
                </div>

                <!-- Rhythm Analysis -->
                <div class="glass-card" id="rhythmCard" style="display: none;">
                    <div class="card-header">
                        <h2>🎵 Rhythm Analysis</h2>
                        <p>Detected rhythmic patterns</p>
                    </div>
                    
                    <div class="rhythm-info">
                        <div class="rhythm-item">
                            <span class="rhythm-label">Estimated BPM:</span>
                            <span class="rhythm-value" id="bpmValue">--</span>
                        </div>
                        <div class="rhythm-item">
                            <span class="rhythm-label">Consistency:</span>
                            <span class="rhythm-value" id="consistencyValue">--</span>
                        </div>
                    </div>
                </div>

                <!-- Action Buttons -->
                <div class="action-buttons">
                    <button class="btn btn-secondary" id="newAnalysisBtn">
                        🔄 Analyze Another Video
                    </button>
                    <button class="btn btn-secondary" id="shareBtn">
                        📤 Share Results
                    </button>
                </div>
            </section>

        </div>
    </main>

    <!-- Footer -->
    <footer class="footer">
        <div class="container">
            <p>&copy; 2024 DanceDynamics • Built with MediaPipe & FastAPI</p>
            <div class="footer-links">
                <a href="/api/docs" target="_blank">API Docs</a>
                <a href="https://github.com/Prathameshv07/DanceDynamics" target="_blank">GitHub</a>
            </div>
        </div>
    </footer>

    <!-- Toast Notification -->
    <div class="toast" id="toast"></div>

    <!-- Scripts -->
    <script type="module" src="/static/js/main.js"></script>
</body>
</html>