frontierai commited on
Commit
932f2a4
·
verified ·
1 Parent(s): c588388

Embed VibeVoice ASR Streaming playground

Browse files
Files changed (1) hide show
  1. index.html +24 -7
index.html CHANGED
@@ -1,12 +1,29 @@
1
  <!DOCTYPE html>
2
- <html>
3
  <head>
4
- <meta http-equiv="refresh" content="0; url=https://aka.ms/vibeasr" />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  </head>
6
  <body>
7
- <p>
8
- Redirecting to VibeVoice ASR Streaming service...
9
- <a href="https://aka.ms/vibeasr">Click here if not redirected</a>
10
- </p>
 
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>