videomail-client
Version:
A wicked npm package to record videos directly in the browser, wohooo!
23 lines (21 loc) • 685 B
HTML
<html>
<head>
<title>videomail-client examples</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<body>
<h1>How it looks on a bad browser</h1>
<div id="videomail"></div>
<script src="/js/videomail-client.js"></script>
<script>
var videomailClient = new VideomailClient({
verbose: true,
adjustFormOnBrowserError: true,
fakeUaString: 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0)',
reportErrors: true
})
videomailClient.show()
</script>
</body>
</html>