bricks/examples/recorder.html
2024-01-29 17:46:32 +08:00

27 lines
416 B
HTML

<html>
<head>
</head>
<body>
<script src="/bricks/bricks.js"></script>
<script>
const opts =
{
"widget": {
"id":"recorder",
"widgettype":"AudioRecorder",
"options":{
"height":"40px",
"start_icon":"/bricks/imgs/start_recording.png"
}
}
}
;
const app = new BricksApp(opts);
console.log('here ..........');
app.run();
console.log('here 1..........');
</script>
</body>
</html>