-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathloop-recording-demo.html
More file actions
53 lines (45 loc) · 2.06 KB
/
loop-recording-demo.html
File metadata and controls
53 lines (45 loc) · 2.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>OpenDAW Loop Recording & Takes Demo - Multi-Take Recording</title>
<meta name="title" content="OpenDAW Loop Recording & Takes Demo - Multi-Take Recording" />
<meta name="description"
content="Record multiple takes over a loop region with OpenDAW. Manage, compare, and switch between takes with independent waveform visualization." />
<meta name="keywords"
content="OpenDAW, loop recording, takes, multi-take, comping, audio recording, browser DAW" />
<meta name="author" content="Moises AI" />
<meta name="theme-color" content="#f59e0b" />
<link rel="canonical" href="https://opendaw-test.pages.dev/loop-recording-demo.html" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://opendaw-test.pages.dev/loop-recording-demo.html" />
<meta property="og:title" content="OpenDAW Loop Recording & Takes Demo" />
<meta property="og:description"
content="Record multiple takes over a loop region. Manage and compare takes with waveform visualization." />
<meta property="og:site_name" content="OpenDAW Demos" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="OpenDAW Loop Recording & Takes Demo" />
<meta name="twitter:description"
content="Record multiple takes over a loop region. Manage and compare takes with waveform visualization." />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<style>
body {
margin: 0;
padding: 20px;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/loop-recording-demo.tsx"></script>
</body>
</html>