Files
photo_booth/camera/templates/index.html
T
2026-05-30 00:22:52 +02:00

32 lines
863 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pi Camera Stream</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<header>
<h1>Raspberry Pi Camera</h1>
<p class="subtitle">HQ Camera M12 — Live Stream</p>
</header>
<div class="stream-container">
<img id="stream" src="/video_feed" alt="Camera stream">
</div>
<section class="gallery" id="gallery">
<p class="gallery-empty">Aucune photo pour l'instant</p>
</section>
<footer>
Résolution <span>{{ width }}×{{ height }}</span>
Qualité <span>{{ quality }}%</span>
</footer>
<script src="{{ url_for('static', filename='script.js') }}"></script>
</body>
</html>