videomail-client
Version:
A wicked npm package to record videos directly in the browser, wohooo!
31 lines (29 loc) • 840 B
HTML
<html>
<head>
<title>videomail-client examples</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<body>
<h1>Dead simple too but based on jpeg image frames only</h1>
<div id="videomail"></div>
<script src="/js/videomail-client.js"></script>
<script>
var videomailClient = new VideomailClient({
verbose: true,
disableSubmit: true,
enablePause: true,
enableAutoPause: true,
image: {
types: ['jpeg']
},
video: {
countdown: 0,
width: 280,
limitSeconds: 20
}
})
videomailClient.show()
</script>
</body>
</html>