forked from MTG/essentia.js-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (75 loc) · 4.11 KB
/
index.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
<!doctype html>
<html>
<head>
<title>Essentia's Benchmarking</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="dist/main.css">
</head>
<body>
<header>
<div class="container center padding_20">
<h1 class="title">Algorithms time Benchmarking</h1>
<h2 class="subtitle">
Audio comparison between <strong>Meyda.js</strong> and <strong>essentia.js</strong>
</h2>
<a class="button is-large" href="https://github.com/MTG/essentia.js-benchmarks" target="_blank">
<i class="fab fa-github" style="margin-right: 5px"></i>
GitHub
</a>
</div>
</header>
<section class="section">
<div class="container padding_20">
<div class="container">
<h3 class="title">
Options
</h3>
<div class="field">
<div class="control">
<p>Repetitions</p>
<input class="input" type="tel" placeholder="Amount" id="repetitions" maxlength="4">
<p class="has-text-grey-light">This field is optional. If not filled in the system reproduces the minimun repetions needed to obtain a significant value.</p>
</br>
<p>Audio Duration</p>
<button id="audio5s" class="button audioButton is-primary">5 seconds</button>
<button id="audio10s" class="button audioButton is-primary">10 seconds</button>
<button id="audio20s" class="button audioButton is-primary">20 seconds</button>
<button id="audio30s" class="button audioButton is-primary">30 seconds</button>
</br>
</br>
<p>Download Results</p>
<label class="checkbox"><input id="downloadResults" type="checkbox">json</label>
</br>
</br>
<p>Use essentia's FrameCutter for essentia algorithms</p>
<label class="checkbox"><input id="frameMode" type="checkbox">FrameCutter Algorithm</label>
</div>
</div>
</div>
<div class="container" id="main-container">
</div>
</div>
</section>
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>Sonosuite</strong> by <a target="_blank" href="https://luisjoglar.com">Luis Joglar</a> and <a target="_blank" href="">Alex Albàs</a>. The source code is under
<a href="http://opensource.org/licenses/mit-license.php">MIT</a> license.
</p>
<p>
Using <a target="_blank" href="https://mtg.github.io/essentia.js">essentia.js</a> and <a target="_blank" href="https://meyda.js.org">Meyda</a>
</p>
</div>
</footer>
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<!-- <script src="https://unpkg.com/[email protected]/dist/essentia-wasm.web.js"></script>-->
<!-- <script src="https://unpkg.com/[email protected]/dist/essentia.js-core.js"></script>-->
<script src="dist/essentia/essentia-wasm.web.js"></script>
<script src="dist/essentia/essentia.js-core.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.15/lodash.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/2.1.4/benchmark.js"></script>
<script src="dist/main.bundle.js"></script>
</body>
</html>