forked from nikhila-kuchimanchi/oratory_coach_results
-
Notifications
You must be signed in to change notification settings - Fork 8
/
irl.html
79 lines (69 loc) · 2.21 KB
/
irl.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Speech Analysis</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #1C1C1E;
color: white;
text-align: center;
}
.container {
padding: 50px;
}
.upload-section, .result-section {
display: none;
}
h1, h2 {
color: white;
}
.btn {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
margin: 10px;
}
.btn:hover {
background-color: #45a049;
}
.hidden {
display: none;
}
</style>
</head>
<body>
<div class="container">
<!-- Welcome Screen -->
<div class="welcome-section">
<h1>Welcome to Speech Analysis</h1>
<h2>Upload your speech video or audio file for analysis</h2>
<button class="btn" onclick="showUpload()">Upload Video/Audio</button>
</div>
<!-- Upload Section -->
<div class="upload-section">
<h2>Upload your Speech File</h2>
<input type="file" id="fileInput" accept="audio/*,video/*">
<br>
<button class="btn" onclick="analyzeFile()">Analyze</button>
</div>
<!-- Result Section -->
<div class="result-section">
<h1>Analysis Complete</h1>
<h2>Aggregate Result: Good</h2>
<!-- <button class="btn" onclick="viewFacialGestures()">View Facial Gesture Analysis</button>
<button class="btn" onclick="viewBodyGestures()">View Body Gesture Analysis</button>
<button class="btn" onclick="viewSentimentAnalysis()">View Sentiment Analysis</button> -->
<button class="btn" onclick="viewAggregateResults()">View Aggregate Results</button>
<br>
<button class="btn" onclick="goHome()">Back to Home</button>
</div>
</div>
<script src="aud_vid.js">
</script>
</body>
</html>