45 lines
1.0 KiB
HTML
45 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="styles.css" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Tauri GST Record + Preview</title>
|
|
</head>
|
|
|
|
<body>
|
|
<main class="container">
|
|
<h1>POC 2 - Recording + Preview</h1>
|
|
|
|
<section class="card">
|
|
<h2>Audio</h2>
|
|
|
|
<div class="actions">
|
|
<button id="start-audio-btn" type="button">Start audio</button>
|
|
<button id="stop-audio-btn" type="button" disabled>Stop
|
|
audio</button>
|
|
</div>
|
|
|
|
<pre id="audio-status">Ready.</pre>
|
|
</section>
|
|
|
|
<section class="card">
|
|
<h2>Video</h2>
|
|
|
|
<div class="actions">
|
|
<button id="start-video-btn" type="button">Start video</button>
|
|
<button id="stop-video-btn" type="button" disabled>Stop
|
|
video</button>
|
|
</div>
|
|
|
|
<div class="preview-wrap">
|
|
<img id="video-preview" alt="Video preview" />
|
|
</div>
|
|
|
|
<pre id="video-status">Ready.</pre>
|
|
</section>
|
|
</main>
|
|
<script type="module" src="main.ts" defer></script>
|
|
</body>
|
|
</html>
|