Embed VibeVoice ASR Streaming playground
Browse files- index.html +24 -7
index.html
CHANGED
|
@@ -1,12 +1,29 @@
|
|
| 1 |
<!DOCTYPE html>
|
| 2 |
-
<html>
|
| 3 |
<head>
|
| 4 |
-
<meta
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
</head>
|
| 6 |
<body>
|
| 7 |
-
<
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
|
|
|
| 11 |
</body>
|
| 12 |
-
</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" />
|
| 6 |
+
<title>VibeVoice ASR Streaming</title>
|
| 7 |
+
<style>
|
| 8 |
+
html,
|
| 9 |
+
body {
|
| 10 |
+
margin: 0;
|
| 11 |
+
height: 100%;
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
iframe {
|
| 15 |
+
display: block;
|
| 16 |
+
width: 100%;
|
| 17 |
+
height: 100%;
|
| 18 |
+
border: 0;
|
| 19 |
+
}
|
| 20 |
+
</style>
|
| 21 |
</head>
|
| 22 |
<body>
|
| 23 |
+
<!-- Wildcard allowlist, not 'src': aka.ms redirects cross-origin, which would drop a 'src'-scoped grant. -->
|
| 24 |
+
<iframe
|
| 25 |
+
src="https://aka.ms/vibeasr"
|
| 26 |
+
allow="microphone *; camera *; autoplay; clipboard-write"
|
| 27 |
+
></iframe>
|
| 28 |
</body>
|
| 29 |
+
</html>
|