OLD | NEW |
---|---|
(Empty) | |
1 <html> | |
2 <head> | |
3 <script type="text/javascript"> | |
4 function getUserMedia(constraints) { | |
5 navigator.webkitGetUserMedia(constraints, okCallback, failedCallback); | |
6 } | |
7 | |
8 function failedCallback(error) { | |
9 document.title = 'GetUserMedia call failed with code ' + error.code; | |
10 } | |
11 | |
12 function okCallback(stream) { | |
13 stream.stop(); | |
14 document.title = 'OK'; | |
15 } | |
16 </script> | |
17 </head> | |
18 </html> | |
OLD | NEW |