videomail-client
Version:
A wicked npm package to record videos directly in the browser, wohooo!
21 lines (19 loc) • 546 B
HTML
<html>
<head>
<title>videomail-client examples</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<body>
<h1>Dead simple with most defaults</h1>
<div id="videomail"></div>
<script src="/js/videomail-client.js"></script>
<script>
var videomailClient = new VideomailClient({
verbose: true,
disableSubmit: true
})
videomailClient.show()
</script>
</body>
</html>